Jump to content

تصحيح كود


Recommended Posts

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

يا شبباب عندي خطا بهالكود ياليت تصلحوه

addEvent("M4", true) 
addEventHandler("M4", getRootElement(), 
  function() 
if getPlayerMoney(thePlayer) == '2000' then 
   giveWeapon(thePlayer,31,600) 
   takeMoney(thePlayer,2000) 
   outputChatBox('بـ 2000 دولآر  M4 لـقـد اشـتـريـت ! ',thePlayer,0,255,0) 
   else 
   outputChatBox('لإتـمـلك مـآلإ كـآفيـآ ',thePlayer,255,0,0) 
   end 
   end 
) 

وبشرحهه لكم

يعني لو كانت فلوس اللعب 2000 يقدر يشتري السلاح ولو ما كان معهه 2000 يطلع له لاتملك مالا كافيا

يا ريت تصلحووهه لي :(

Link to comment

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

يا شبباب عندي خطا بهالكود ياليت تصلحوه

addEvent("M4", true)
addEventHandler("M4", getRootElement(),
  function()
if getPlayerMoney(thePlayer) == '2000' then
   giveWeapon(thePlayer,31,600)
   takeMoney(thePlayer,2000)
   outputChatBox('بـ 2000 دولآر  M4 لـقـد اشـتـريـت ! ',thePlayer,0,255,0)
   else
   outputChatBox('لإتـمـلك مـآلإ كـآفيـآ ',thePlayer,255,0,0)
   end
   end
)

وبشرحهه لكم

يعني لو كانت فلوس اللعب 2000 يقدر يشتري السلاح ولو ما كان معهه 2000 يطلع له لاتملك مالا كافيا

يا ريت تصلحووهه لي :(

thePlayer > غير معرف

و

takeMoney(thePlayer,2000) 
to  
takePlayerMoney(thePlayer,2000) 

Link to comment
addEvent("M4", true) 
addEventHandler("M4", getRootElement(), 
  function  (       ) 
        if getPlayerMoney( client ) >= 2000 then 
        giveWeapon( client,31,600 ) 
        takePlayerMoney( client,2000 ) 
        outputChatBox('بـ 2000 دولآر  M4 لـقـد اشـتـريـت ! ',client,0,255,0) 
   else 
        outputChatBox('لإتـمـلك مـآلإ كـآفيـآ ',client,255,0,0) 
    end 
end 
) 

اذا لوكال جرب كذا

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...