14.06.2012, 14:10
I haven't tested this but it should work. I'm not sure if you can clear the icons but this should clear the names. I'm also not sure how many death messages are shown i have looped 10 times but it may not need that many.
If you don't use YCMD or ZCMD paste the loop into your command.
pawn Code:
COMMAND:cdw(playerid, params[])
{
for(new i; i < 10; ++i)
{
SendDeathMessage( INVALID_PLAYER_ID, INVALID_PLAYER_ID, 200 )//connection icon
}
return 1;
}