Death List (Like on DM servers) - 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: Death List (Like on DM servers) (
/showthread.php?tid=154592)
Death List (Like on DM servers) -
Jonny_lockhart - 14.06.2010
On DM servers you see on the right hand side of the screen a list of the last deaths, How do I get that on my server?
Re: Death List (Like on DM servers) -
MadeMan - 14.06.2010
https://sampwiki.blast.hk/wiki/SendDeathMessage
Re: Death List (Like on DM servers) -
Jonny_lockhart - 14.06.2010
Is SA:MP Wiki down for anyone else?
Re: Death List (Like on DM servers) -
Drowzz - 14.06.2010
Yep.. it works by me not
Re: Death List (Like on DM servers) -
XoX - 14.06.2010
pawn Код:
public OnPlayerDeath(playerid, killerid, reason)
{
if(killerid==INVALID_PLAYER_ID) { SendDeathMessage(INVALID_PLAYER_ID,playerid,reason); }
else { SendDeathMessage(killerid,playerid,reason);}
you maybe need to change hud
Re: Death List (Like on DM servers) -
Jonny_lockhart - 14.06.2010
Thanks!