Quote:
Originally Posted by Shady91
pawn Код:
ShowNameTags(1);//this makes them show
pawn Код:
ShowNameTags(0;//this hides them
to make a command to show and hide them use this.
pawn Код:
} if(strcmp(cmdtext, "/nametagon", true)==0) { for(new i = 0; i < MAX_PLAYERS; i ++) { SendClientMessage(playerid, COLOR_YELLOW2, "Name Tag's Will Appear."); ShowPlayerNameTagForPlayer(playerid, i, 1); } return 1; } if(strcmp(cmdtext, "/nametagoff", true)==0) { for(new i = 0; i < MAX_PLAYERS; i ++) { ShowPlayerNameTagForPlayer(playerid, i, 0); SendClientMessage(playerid, COLOR_YELLOW2, "Name Tag's Will Be Hidden."); } return 1; }
|
No thanks
Quote:
Originally Posted by Sergiy
Quote:
Originally Posted by Antonio (IRP)
Quote:
Originally Posted by InstabiC
|
So basicly, under OnGameModeInit i post SetNameTagDrawDistance(20.0); ??
|
Yes
|
When I do this, it says "Symbol Already Defined, but when I search it, there is no matches. Help please?