/afklist whats wrong
#1

Код:
	if (strcmp("/afklist", cmdtext, true, 10) == 0)
	{
			new PName[MAX_PLAYER_NAME];
			SendClientMessage(playerid, 0xAA3333AA, "Afk Players:");
  for(new i = 0; i < MAX_PLAYERS; i++)
			{
				if(IsPlayerConnected(i))
				{
				  if(AFK[playerid] == 1)
				  {
						GetPlayerName(playerid, PName, sizeof(PName));
						format(string, 256, "Player: %s", PName);
						SendClientMessage(playerid, 0xFFFFFFAA, string);
					}
				}
			}
  		return 1;
	}
If I'm alone at the server it works if not when i type /afklist i see my name 2 times and the other person can see nothing
Reply
#2

Quote:
Originally Posted by ArTisT
Код:
	if (strcmp("/afklist", cmdtext, true, 10) == 0)
	{
			new PName[MAX_PLAYER_NAME];
			SendClientMessage(playerid, 0xAA3333AA, "Afk Players:");
 for(new i = 0; i < MAX_PLAYERS; i++)
			{
				if(IsPlayerConnected(i))
				{
				  if(AFK[i] == 1)
				  {
						GetPlayerName(i, PName, sizeof(PName));
						format(string, 256, "Player: %s", PName);
						SendClientMessage(playerid, 0xFFFFFFAA, string);
					}
				}
			}
  		return 1;
	}
If I'm alone at the server it works if not when i type /afklist i see my name 2 times and the other person can see nothing
Reply
#3

Thanks
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)