11.07.2012, 18:01
i want if player die take from him 1 score and 2000 money and killer get 4000 money and 2 score
but its give killer only 100 money and 2 score and who die did not take from him score or money
this in my gamemode :
but its give killer only 100 money and 2 score and who die did not take from him score or money
this in my gamemode :
PHP код:
public OnPlayerDeath(playerid, killerid, reason)
{
if(killerid != INVALID_PLAYER_ID)
{
SetPlayerScore(killerid, GetPlayerScore(killerid)+2);
GivePlayerMoney(killerid, 4000);
SendClientMessage(killerid, -1, "Congratulation!You have gained 4000$ and +2 score.");
SetPlayerScore(playerid, GetPlayerScore( playerid ) -1 );
GivePlayerMoney(playerid, -2000);
SendClientMessage(playerid, -1, "You lost 2000$ because you got killed.");
}
return 1;