09.07.2011, 23:41
Lets make a list
1. Team textdraws apper if you spawn
2. Textdraws dont work in OnPlayerSpawn
3. Textdraw "Rank" doesnt work in OnPlayerSpawn
I would say item 1 and item 2 doesnt match
But I guess its just the return you used in your team statements
And whenever OnPlayerSpawn is called by the server the player is connected
1. Team textdraws apper if you spawn
2. Textdraws dont work in OnPlayerSpawn
Quote:
... I wan't text draw "Rank" get to appear when player spawns ... even that text draw doesn't work
|
I would say item 1 and item 2 doesnt match
But I guess its just the return you used in your team statements
And whenever OnPlayerSpawn is called by the server the player is connected
pawn Код:
// OnPlayerSpawn
if(gTeam[playerid] == TEAM_ONE)
{
TextDrawShowForPlayer(playerid, TeamOne);
}
else if(gTeam[playerid] == TEAM_TWO)
{
TextDrawShowForPlayer(playerid, TeamTwo);
}