2x death notify :O - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (
https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (
https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: 2x death notify :O (
/showthread.php?tid=122836)
2x death notify :O -
`FuTuRe- - 23.01.2010
When i killed someone it notifys that 2 times in kill box
Re: 2x death notify :O -
Blantas - 23.01.2010
Check your OnPlayerDeath callback. It seems that you used SendDeathMessage more than once.
Re: 2x death notify :O -
`FuTuRe- - 23.01.2010
pawn Код:
public OnPlayerDeath(playerid, killerid, reason)
{
SendDeathMessage(killerid,playerid,reason);
GivePlayerMoney(killerid,500);
SetPlayerScore(killerid, GetPlayerScore(killerid) + 1);
return 1;
}