[SOLVED] Maximum Textdraws for players?
#2

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:
pawn Код:
#undef MAX_PLAYERS
#define MAX_PLAYERS (100) // i doubt you're going to need all 500 slots, so change it to your own.
Reply


Messages In This Thread
[SOLVED] Maximum Textdraws for players? - by Sergio_team - 03.01.2010, 12:38
Re: Maximum Textdraws for players? - by Correlli - 03.01.2010, 12:48
Re: Maximum Textdraws for players? - by Sergio_team - 03.01.2010, 12:51

Forum Jump:


Users browsing this thread: 1 Guest(s)