Jump to content

givePlayerMoney Error


Dolinho

Recommended Posts

can you help me?

I'm not making money by killing a player :cry:

addEventHandler ("onPlayerWasted",getRootElement(), 
function(client) 
if getElementData( source, "Occupation", "AZUL") ~= true then 
takePlayerMoney ( source, 1200 ) 
givePlayerMoney ( client, 1200 ) 
end 
end 
) 

Link to comment
  • Moderators
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

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