01.09.2014, 16:04
Are you one of those who does a loop under OnGameModeInit or OnFilterscriptInit for each player and creates global textdraws for each one of them ~ if so then convert these textdraws to CreatePlayerTextDraw and make it create it under OnPlayerConnect.
(About the loop it should be something like this):
I hope I helped any feedback would be appreciated!
(About the loop it should be something like this):
pawn Код:
for(new i = 0; i < MAX_PLAYERS; i++)
{
TEXTDRAWPLAYER[i] = CreateTextDraw(etc....)
}