SA-MP Forums Archive
[Help]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)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: [Help]Kill list (/showthread.php?tid=196282)



[Help]Kill list[SOLVED] - =WoR=Bruno - 05.12.2010

My kill list isnt working...can someone help??i cant see what problem is... -.-' im running a 0.3a server...


Re: [Help]Kill list - Mehtab - 05.12.2010

public OnPlayerCommandText(playerid, cmdtext[])
{
if (strcmp("/kill", cmdtext, true, 5) == 0)
{
SetPlayerHealth(playerid, 0.0);
return 1;
}
return 0;
}


are you talking about this


Re: [Help]Kill list - =WoR=Bruno - 05.12.2010

Quote:
Originally Posted by Hoborific
Посмотреть сообщение
I think he means the box on the right of the screen.

yap its that


Re: [Help]Kill list - Matej_ - 05.12.2010

https://sampforum.blast.hk/showthread.php?tid=184460


Re: [Help]Kill list - =WoR=Bruno - 05.12.2010

its not a problem with the fonts..it just dont show..anything xD
help pls


Re: [Help]Kill list - Mean - 05.12.2010

pawn Код:
public OnPlayerDeath(playerid, killerid, reason)
{
    if(killerid == INVALID_PLAYER_ID)
    {
        SendDeathMessage(INVALID_PLAYER_ID,playerid,reason);
    }
    else
    {
        SendDeathMessage(killerid,playerid,reason);
    }
    return 1;
}
This enables kill list


Re: [Help]Kill list - =WoR=Bruno - 05.12.2010

Thx alot man