03.06.2016, 05:14
It doesn't work like that.
-----------------------------------------------------------------------------
You need the include "zcmd": https://sampforum.blast.hk/showthread.php?tid=91354
-----------------------------------------------------------------------------
pawn Код:
#include <zcmd>
CMD:cleardeathlist(playerid, params[])
{
ClearDeathList();
return 1;
}
ClearDeathList()
{
for(new i = 0; i < 5; i ++)
{
SendDeathMessage(1001, 1001, 255);
}
return 1;
}


