Kill log - 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)
+--- Thread: Kill log (
/showthread.php?tid=567485)
Kill log -
Hybris - 14.03.2015
Hello how can I make a kill log that shows the player who died by who he died and how he died in the chat?
Re: Kill log -
Hybris - 15.03.2015
I know it has to go in OnPlayerDeath but I have no clue how to do it.
Re: Kill log -
biker122 - 15.03.2015
pawn Код:
public OnPlayerDeath(playerid, killerid, reason)
{
SendDeathMessage(killerid, playerid, reason);
return 1;
}