SA-MP Forums Archive
Non Kill Feed. - 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: Non Kill Feed. (/showthread.php?tid=446754)



Non Kill Feed. - Mafiaday - 27.06.2013

Hi,

How can i make it so that a specifyed name does not show on the "Kill-Feed" at the right?

Thanks,

Mafiaday


Re: Non Kill Feed. - GeniusPobs - 27.06.2013

Remove this "SendDeathMessage(killerid, playerid, reason);" in public OnPlayerDeath.


Respuesta: Non Kill Feed. - Parka - 27.06.2013

SendDeathMessage
Reason

pawn Код:
Simple Example:

public OnPlayerDeath(playerid, killerid, reason)
{
    SendDeathMessage(killerid, playerid, reason);
    SendDeathMessage(INVALID_PLAYER_ID, playerid, 24);//desert
    SendDeathMessage(INVALID_PLAYER_ID, playerid, 25);//shotgun
    SendDeathMessage(INVALID_PLAYER_ID, playerid, 31);// M4


    return 1;
}

Or Remove SendDeathMessage