Help - Clans not loading.
#1

Hey, I have a problem only the first clan loads and the others don't. What am I doing wrong here?
PHP код:
stock LoadClans()
{
   new 
string[80], file[64];
   for(new 
cMAX_CLANS++)
   {
       
format(filesizeof(file), "Clans/%d.ini"c);
       if(
fexist(file))
       {
           
INI_ParseFile(CrewPath(c), "LoadClanData"falsetruectruefalse);
           
format(stringsizeof(string), " Loaded Clan: (%d) %s"cCrewInfo[c][cName]);
           print(string);
           
++;
           
printf("\n %d clans loaded!"c);
        }
    }
   return 
true;

Reply
#2

PHP код:
stock LoadClans()
{
   new 
string[80], file[64], totalclans;
   for(new 
cMAX_CLANS++)
   {
       
format(filesizeof(file), "Clans/%d.ini"c);
       if(
fexist(file))
       {
           
INI_ParseFile(CrewPath(c), "LoadClanData"falsetruectruefalse);
           
printf("Loaded Clan: (%i) %s"cCrewInfo[c][cName]);
           
totalclans++;
       }
   }
   
printf("\n %i clans loaded!"totalclans);
   return 
1;

Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)