Wondering..
#1

Hello, I've been wondering if there's a way I can clear the death log.

pawn Код:
CMD:cleardl(playerid, params[])
{
      for(new i = 0; i < 5; i++)
      {
            SendDeathMessage(INVALID_PLAYER_ID, INVALID_PLAYER_ID, /* What should I put here? */);
      }
      return 1;
}
I couldn't find any icon/reason ID, something like a transperent icon.
I hope you understood what I mean.
Reply
#2

Nope you can but you can use this instead and it will clear it from player names but no there is no transparent icon or anything

pawn Код:
CMD:cleardl(playerid, params[])
{
      for(new i = 0; i < 5; i++)
      {
            SendDeathMessage(INVALID_PLAYER_ID, INVALID_PLAYER_ID, 200);
      }
      return 1;
}
Reply
#3

Код:
CMD:cleardl(playerid, params[])
{
      for(new i = 0; i < 5; i++)
      {
            SendDeathMessage(10001,10001,0);
      }
      return 1;
}
Reply
#4

Quote:
Originally Posted by ahmedkoki
Посмотреть сообщение
Nope you can but you can use this instead and it will clear it from player names but no there is no transparent icon or anything

pawn Код:
CMD:cleardl(playerid, params[])
{
      for(new i = 0; i < 5; i++)
      {
            SendDeathMessage(INVALID_PLAYER_ID, INVALID_PLAYER_ID, 200);
      }
      return 1;
}
Yeah, I did that already, it looked kinda ugly.
Thank you for your response anyway.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)