03.06.2016, 03:01
Hi there,
How i can clear the deathlog? (I mean with a command.)
Thanks for reading
How i can clear the deathlog? (I mean with a command.)
Thanks for reading
ClearDeathList()
{
for(new i = 0; i < 5; i ++)
{
SendDeathMessage(1001, 1001, 255);
}
return 1;
}
#include <zcmd>
CMD:cleardeathlist(playerid, params[])
{
ClearDeathList();
return 1;
}
ClearDeathList()
{
for(new i = 0; i < 5; i ++)
{
SendDeathMessage(1001, 1001, 255);
}
return 1;
}