Jump to content

script problem


Recommended Posts

How repair this script, after Im kill player, not give me money.

Im use DayZ gamemode.

function rewardOnWasted ( ammo, killer, killerweapon, bodypart ) 
  
    if ( killer ) and ( killer ~= source ) then 
        givePlayerMoney ( killer, 5000 ) 
    end 
end 
addEventHandler ( "onPlayerWasted", getRootElement(), rewardOnWasted ) 

Link to comment
function rewardOnWasted ( ammo, attacker, weapon, bodypart ) 
     if ( attacker ) then 
          givePlayerMoney ( attacker, 5000 ) 
     else 
          return 
     end 
end 

I haven't tested this as i cannot (because my local server doesn't have players)

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