02.08.2014, 17:23
Could it be, that you have reached the Textdraw-Limit? The Limit for textdraws is 2048 TD's.
If you create 3 global TD's with player-variable:
This would be 1500 Textdraws (3 * MAX_PLAYERS [MAX_PLAYERS = 500])
You should use "PlayerTextDraws".
If you create 3 global TD's with player-variable:
pawn Код:
new Textdraw0[MAX_PLAYERS];
new Textdraw1[MAX_PLAYERS];
new Textdraw2[MAX_PLAYERS];
You should use "PlayerTextDraws".