#1

So, my mask command doesn't work.. big suprise. Anyways, it says "You now have mask on and stuff.. but these lines right here don't work...

pawn Код:
for(new i = 0; i <= MAX_PLAYERS; i++) {
      ShowPlayerNameTagForPlayer(i, playerid, false);
Thanks for the help
Reply
#2

This might help you out for the stream in. ( If thats the problem )
pawn Код:
public OnPlayerStreamIn(playerid, forplayerid)
{
    if(Mask[playerid] == 1)
    {
        ShowPlayerNameTagForPlayer(forplayerid, playerid, false);
    }
    return 1;
}
Reply
#3

Well I'm not sure what the atcual problem is
Reply
#4

Edit::

On
Код:
for(new i = 0; i < MAX_PLAYERS; i++)
  			{
  		  	if(IsPlayerConnected(i))
  		  	{
		  			ShowPlayerNameTagForPlayer(i, playerid, 0);
				}
			}
Off
Код:
for(new i = 0; i < MAX_PLAYERS; i++)
  			{
  		  	if(IsPlayerConnected(i))
  		  	{
		  			ShowPlayerNameTagForPlayer(i, playerid, 1);
				}
			}
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)