SA-MP Forums Archive
need help here - 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: need help here (/showthread.php?tid=481424)



need help here - iThePunisher - 15.12.2013

i made my server but idk how to add the killing list -_-
can someone help me ?


Re: need help here - TonyII - 15.12.2013

Like the message that shows who killed who? SendDeathMessage(killerid,playerid,reason); Under onplayerdeath


Re: need help here - iOxide - 15.12.2013

You mean the kills/death showing at the right side? If yes, add this

pawn Код:
public OnPlayerDeath(playerid, killerid, reason)
{
    SendDeathMessage(killerid, playerid, reason);
    return 1;
}



Re: need help here - iThePunisher - 16.12.2013

thanks both of you