18.09.2015, 18:40
Try this model
PHP код:
stock Carregar_Factions()
{
new i, x = 0, Cache:result3 = mysql_query(handle,"SELECT * FROM `factions` ORDER BY `factions`.`ID` ASC");
for(i = 0; i < cache_get_row_count(); i++)
{
cache_get_field_content(i, "facname",temp); format(FactionInfo[x][facname] , 128, temp);
}
cache_delete(result3);
print("=============================================================");
printf(" We Loaded %i factions", x);
print("=============================================================\n");
return 1;
}