23.02.2015, 23:29
I marked them with //ERROR HERE
Код HTML:
LoadLeaders(); //This MUST BE executed AFTER the organizations are being created!
new pcount = 0;
for (new playerid = 0;playerid<MAX_PLAYERS;playerid++) //ERROR HERE
{
if (IsPlayerConnected(playerid)) //ERROR HERE
{
LoadPlayerOrgInfo(playerid);
pcount++; //ERROR HERE
}
}
if (pcount > 0) //ERROR HERE
{
printf("Dynamic Families loaded.");
printf("Data loaded for %d players.", pcount);
}
return 1; //ERROR HERE
}