Idle Check
#4

The SA-MP nametag can now show the alt-tab/paused status of a player. Use the client command /nametagstatus to toggle this feature on/off.

In script something,

pawn Код:
if (strcmp("/hidetags", cmdtext, true) == 0)
    {
  for(new i = 0; i < MAX_PLAYERS; i++)
  {
    ShowPlayerNameTagForPlayer(playerid, i, false);
  }
  return 1;
}

if (strcmp("/showtags", cmdtext, true) == 0)
    {
  for(new i = 0; i < MAX_PLAYERS; i++)
  {
    ShowPlayerNameTagForPlayer(playerid, i, true);
  }
  return 1;
}
The player who typed /hidetag will not be able to see any other players nametag

https://sampwiki.blast.hk/wiki/ShowPlayerNameTagForPlayer
https://sampwiki.blast.hk/wiki/ShowNameTags
Reply


Messages In This Thread
Idle Check - by xDeadlyBoy - 22.04.2014, 09:43
Re: Idle Check - by BroZeus - 22.04.2014, 09:57
Re: Idle Check - by xDeadlyBoy - 22.04.2014, 10:02
Re: Idle Check - by Bingo - 22.04.2014, 10:06

Forum Jump:


Users browsing this thread: 1 Guest(s)