14.10.2017, 19:16
I have a timer "loadtextdraws and bars" in ongamemodeinit, it is all normal but if a player with ID +60 enters, he does not get any textdraw or bar.
I already saw in all includes and filterscripts but there are no MAX_PLAYERS 60
Код:
#include <a_samp> #undef MAX_PLAYERS #define MAX_PLAYERS 100 #include <progress>
Код:
forward loadtexts();
public loadtexts()
{
for(new i=0;i<MAX_PLAYERS;i++)
{
Bar[i] ...
Text[i] ...
}
return 1;
}

