Jump to content

طلب شرح


Recommended Posts

السلام عليكم ورحمه الله وبركاته

كيف الحال

اما بعد:

والله انا يا شباب

سويت الشوب وخليتت الى يدق على السلاح يشتري وكلش لكن

عندي مشكله بسيط

انا سويت خانه اسمها

SHOP

في هناك ادد وحمايه والدم وباقي الاشياء المعروفه ماعرف كيف اخلي الواحد اذا دق يجيله السلاح

وابي الاكواد كلها لا هنت ادد وكل شي تكفون طلبتكم

وابي شرح كمان

المعلومات

االاسم

الاي بي

والدم

والحمايه

الفلوس

وباقي الاشياء

ابي الشرح الممل تكفون طلبتكم لا تردوني

وجزاكم الله خير

Link to comment
  • Replies 101
  • Created
  • Last Reply

Top Posters In This Topic

هذآ تطبيق على إسسم اللاعب + شراء الدم + الدرع

-- Client side --

playerName = guiCreateLabel(115,101,209,20,"N/A",false,GUIEditor_Tab[1]) 
guiSetText ( playerName, getPlayerName(source)) 
  
addEventHandler ("onClientGUIClick", root, 
    function() 
        if ( source ==  HEALTH ) then  -- ( source ==  اسم الزر ) 
        triggerServerEvent("armor", localPlayer) 
         
        elseif ( source ==  ARMOR ) then 
         triggerServerEvent("armor", localPlayer) 
        end 
    end 
)    

-- Server Side --

addEvent("health",true) 
addEventHandler("health",getRootElement(), 
    function () 
       if getPlayerMoney(source) >= 2500 then 
       takePlayerMoney (source,2500) 
       setElementHealth(source,100) 
       outputChatBox("* #0099ccSuccessfully bought Health #000000[ #ff0000-$2500 #000000]#00ff00 !",source,0,255,0,true) 
       elseif getPlayerMoney(source) <= 2500 then 
       outputChatBox("* you Don't have enough Money !",source,255,0,0,true) 
       end 
    end 
) 
  
addEvent("armor",true) 
addEventHandler("armor",getRootElement(), 
    function () 
        if getPlayerMoney(source) >= 2000 then 
        takePlayerMoney (source,2000)    
        setPedArmor(source,100) 
        outputChatBox("* #0099ccSuccessfully bought Armor #000000[ #ff0000-$2000 #000000]#00ff00 !",source,0,255,0,true) 
        elseif getPlayerMoney(source) <= 2000 then 
        outputChatBox("* you Don't have enough Money !",source,255,0,0,true) 
        end 
    end 
) 

Link to comment

Fix 3NAD script ..

----ClientSide ----------

playerName = guiCreateLabel(115,101,209,20,'Name:',false,GUIEditor_Tab[1]) 
guiSetText ( playerName, getPlayerName(source)) 
  
addEventHandler ("onClientGUIClick", root, 
    function() 
        if ( source == HEALTH ) then  -- ( source ==  اسم الزر ) 
        triggerServerEvent('health', localPlayer) -- fixed the name of event here =D 
        elseif ( source == ARMOR ) then  -- ( source ==  اسم الزر ) 
         triggerServerEvent('armor', localPlayer) 
        end 
    end 
)    

---ServerSide

addEvent('health',true) 
addEventHandler('health', root, 
    function () 
       if (getPlayerMoney(source) >= 2500) then 
       takePlayerMoney (source,2500) 
       setElementHealth(source,100) 
       outputChatBox("* #0099ccSuccessfully bought Health #000000[ #ff0000-$2500 #000000]#00ff00 !",source,0,255,0,true) 
       else --- dont use elseif this is good way .. 
       outputChatBox("* you Don't have enough Money !",source,255,0,0,true) 
       end 
    end 
) 
  
addEvent('armor',true) 
addEventHandler("armor", root, 
    function () 
        if (getPlayerMoney(source) >= 2000) then 
        takePlayerMoney (source,2000)    
        setPedArmor(source,100) 
        outputChatBox("* #0099ccSuccessfully bought Armor #000000[ #ff0000-$2000 #000000]#00ff00 !",source,0,255,0,true) 
        else --- dont use elseif this is good way .. 
        outputChatBox("* you Don't have enough Money !",source,255,0,0,true) 
        end 
    end 
) 

Link to comment

This is the Only Code i give You Start learn ..

---ServerSide

---SaveMoney Script By X-SHADOW =D 
addEventHandler('onPlayerQuit', root, 
    function () 
        local account = getPlayerAccount(source) 
        if (account ) and not isGuestAccount(account) then 
        local money = getPlayerMoney(source) 
        setAccountData(account, 'Money', money) 
      end 
end 
) 
  
addEventHandler('onPlayerLogin', root,  
    function() 
        local account = getPlayerAccount(source) 
       if (account) then 
        local money = tonumber(getAccountData(account, 'Money')) 
       if (money) then 
        setPlayerMoney(source, money) 
    end 
end 
end 
) 

Edit .

Link to comment

انا فاهم بس الحين اصور لك اكثر

عشان تفهمون انتم

ابي كود حفض الفلوس

كود تحويل الفلوس

وابي اعرف كيف يعني ماتخش الراس تسوي اكواد كيف تسوي تسوي من الرسام صوره وتبرمجه والله مادري كيف شي مايدخل الراس

المهم

ادونوني الاكواد

الى فوق

الاكواد الى ابيها

الثانيه

الى بالصوره كلها

360927031.png

الاكواد الثانية

988001542.png

ماحبيت اوريكم شوبي

لكن عشان تفهمون ل علي

Link to comment

بس مااقول الى الله يخلي لي ابو زهره الرجال ماقصر معي منتدى فائل ولا اعضاء يساعدون كيف افهم من نفسي

اخت الاكواد وجربت فيها

بنفسي

الشوب مايشتغل

ولما احذف الكود يشتغل

المهم

جزاكم الله خير

ولا اني طالب شي ثاني

Link to comment

شوف هذي الاكواد يمكن تفيدك

------------------------------------------------------------------------Ping label-------------البنق 
function refreshStats() 
if guiGetVisible(GUIEditor_TabPanel[1],true) then 
   GUIEditor_Label[10](GUIEditor_Label[10]," "..getPlayerPing(getLocalPlayer())) 
else 
   guiSetText(GUIEditor_Label[10],"Your ping :"..getPlayerPing(getLocalPlayer())) 
    end 
end 
addEventHandler("onClientRender", getRootElement(), refreshStats) 
  
  
------------------------------------------------------------------------ money label-----------الفلوس 
  
function refreshStats() 
if guiGetVisible(GUIEditor_TabPanel[1],true) then 
   GUIEditor_Label[9](GUIEditor_Label[9]," $"..getPlayerMoney (getLocalPlayer())) 
else 
   guiSetText(GUIEditor_Label[9],"Your Money :"..getPlayerMoney (getLocalPlayer())) 
    end 
end 
addEventHandler("onClientRender", getRootElement(), refreshStats) 
  
  
  
------------------------------------------------------------------------Name----- الاسم 
function refreshStats() 
if guiGetVisible(GUIEditor_TabPanel[1],true) then 
   GUIEditor_Label[8](GUIEditor_Label[8]," "..getPlayerName(getLocalPlayer())) 
else 
   guiSetText(GUIEditor_Label[8],"Your Name :"..getPlayerName(getLocalPlayer())) 
    end 
end 
addEventHandler("onClientRender", getRootElement(), refreshStats) 
  
  
------------------------------------------------------------------------Serial label------السريال 
  
function refreshStats() 
if guiGetVisible(GUIEditor_TabPanel[1],true) then 
   GUIEditor_Label[11](GUIEditor_Label[11]," "..getPlayerSerial (getLocalPlayer())) 
else 
   guiSetText(GUIEditor_Label[11],"Your serial :"..getPlayerSerial (getLocalPlayer())) 
    end 
end 
addEventHandler("onClientRender", getRootElement(), refreshStats) 
  
  
  
  
  
------------------------------------------------------------------------Skin label--------الشخصية 
  
function refreshStats() 
if guiGetVisible(GUIEditor_TabPanel[1],true) then 
   GUIEditor_Label[13](GUIEditor_Label[13]," "..getPlayerSkin (getLocalPlayer())) 
else 
   guiSetText(GUIEditor_Label[13],"Your skin :"..getPlayerSkin (getLocalPlayer())) 
    end 
end 
addEventHandler("onClientRender", getRootElement(), refreshStats) 
---------------------------------------------------------------------------------------------------------- 

اتمنى اني افدتك بالاكواد الي فوق

سلام

:D:):(:o:shock::?:cry::oops::P:x:lol:8):evil::twisted::roll::wink::!::?::arrowleft::arrowdown::mrgreen::|:arrow::idea::arrowup::redhotevil::fadein:

Link to comment

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.

×
×
  • Create New...