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



Nice Kill - Marty1or2 - 10.04.2014

Hey

I'm searching for a script which sends a message like ''Nice Kill!'' to someone who killed someone else.

Marty


Re: Nice Kill - iThePunisher - 10.04.2014

add this at one player death
pawn Код:
GameTextForPlayer(killerid, "Nice Kill!", 3000, 3);
Example
pawn Код:
public OnPlayerDeath(playerid, killerid, reason)
{
   GameTextForPlayer(killerid, "Nice Kill!", 3000, 3);
   return 1;
}