SA-MP Forums Archive
How to disable Kill list - 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: How to disable Kill list (/showthread.php?tid=306891)



How to disable Kill list - MaDK1LLA - 28.12.2011

You see that kill list's are disabled in most roleplay servers. How is this done?


Re: How to disable Kill list - Mike_Peterson - 28.12.2011

If I'm right, thats done with the SendDeathMessage command, in pawn.
If you don't use that, the death window won't show up. if you do, then it will.

edit: look what I found..
https://sampwiki.blast.hk/wiki/SendDeathMessage

pawn Код:
public OnPlayerDeath(playerid, killerid, reason)
{
    SendDeathMessage(killerid, playerid, reason);
    return 1;
}
This snippet of code will enable the death window


Re: How to disable Kill list - MatthewD - 28.12.2011

Quote:
Originally Posted by Mike_Peterson
Посмотреть сообщение
If I'm right, thats done with the SendDeathMessage command, in pawn.
If you don't use that, the list won't show up. if you do, then it will.
Exactly.