20.05.2010, 00:03
Why not just like this?
pawn Code:
public OnPlayerDeath(playerid, killerid, reason)
{
if(GetPlayerMoney(playerid) < 10)
{
GivePlayerMoney(killerid, 750);
return 1;
}
return 1;
}

