xeon17 Posted December 29, 2013 Share Posted December 29, 2013 Is all ok with this script ? function Ammu ( thePlayer ) setPedArmor ( thePlayer, 100 ) setElementHealth ( thePlayer, 100 ) giveWeapon ( thePlayer, 24, 1000000000 ) takePlayerMoney ( thePlayer 2500 ) outputChatBox("[sERVER] You got weapons,armor,health.",thePlayer,0,255,255) end addCommandHandler ( "comprararmas", Ammu ) Link to comment
Moderators IIYAMA Posted December 29, 2013 Moderators Share Posted December 29, 2013 Wrong: takePlayerMoney ( thePlayer 2500 ) Correct: (,) takePlayerMoney ( thePlayer, 2500 ) Link to comment
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now