03.01.2010, 12:48
Server textdraw limit is 2048 so if your MAX_PLAYERS define is 500 and you're using 3 global textdraws, it's 500 * 3 = 1500 textdraws which is still good, but if you're using 5 global textdraws, then it's 500 * 5 which is 2500 which is over the limit.
To solve this problem you can change the MAX_PLAYERS define in the a_samp.inc include file or just use this in your gamemode script:
To solve this problem you can change the MAX_PLAYERS define in the a_samp.inc include file or just use this in your gamemode script:
pawn Код:
#undef MAX_PLAYERS
#define MAX_PLAYERS (100) // i doubt you're going to need all 500 slots, so change it to your own.