Dolinho Posted March 9, 2015 Share Posted March 9, 2015 can you help me? I'm not making money by killing a player addEventHandler ("onPlayerWasted",getRootElement(), function(client) if getElementData( source, "Occupation", "AZUL") ~= true then takePlayerMoney ( source, 1200 ) givePlayerMoney ( client, 1200 ) end end ) Link to comment
DNL291 Posted March 9, 2015 Share Posted March 9, 2015 addEventHandler ("onPlayerWasted",root, function(ammo, attacker) if attacker ~= source and getElementType(attacker) == "player" and getElementData(source, "Occupation") ~= "AZUL" then takePlayerMoney( source, 1200 ) givePlayerMoney( attacker, 1200 ) end end ) Try it. Link to comment
Dolinho Posted March 9, 2015 Author Share Posted March 9, 2015 worked perfectly, thank you ... 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