16.07.2014, 18:41
Ребят, помогите. Мод - Skrillax(Типо копии SAMP-RP). Стоит на MySQL.
Сама проблема заключается в том, что когда добавляю новые строчки с бизнесами(хоть одну), то сервер почему-то не загружает их: цикл продолжается, но вот бизнес самый первый добавленный - не загружается.
Вот код загрузки бизнесов:
Сама проблема заключается в том, что когда добавляю новые строчки с бизнесами(хоть одну), то сервер почему-то не загружает их: цикл продолжается, но вот бизнес самый первый добавленный - не загружается.
Вот код загрузки бизнесов:
PHP код:
publics: LoadBizz()
{
static rows, fields;
cache_get_data(rows, fields);
new temp[64],string2[300],i=0;
if(rows)
{
for(new he = 0;he < rows; he++)
{
cache_get_row(he, 0, temp), BizzInfo[he][bID] = strval(temp);
cache_get_row(he, 1, temp), BizzInfo[he][bOwned] = strval(temp);
cache_get_row(he, 2, temp), strmid(BizzInfo[he][bOwner], temp, 0, strlen(temp), 255);
cache_get_row(he, 3, temp), strmid(BizzInfo[he][bMessage], temp, 0, strlen(temp), 255);
cache_get_row(he, 4, temp), strmid(BizzInfo[he][bExtortion], temp, 0, strlen(temp), 255);
cache_get_row(he, 5, temp), BizzInfo[he][bEntranceX] = floatstr(temp);
cache_get_row(he, 6, temp), BizzInfo[he][bEntranceY] = floatstr(temp);
cache_get_row(he, 7, temp), BizzInfo[he][bEntranceZ] = floatstr(temp);
cache_get_row(he, 8, temp), BizzInfo[he][bExitX] = floatstr(temp);
cache_get_row(he, 9, temp), BizzInfo[he][bExitY] = floatstr(temp);
cache_get_row(he, 10, temp), BizzInfo[he][bExitZ] = floatstr(temp);
cache_get_row(he, 11, temp), BizzInfo[he][bBuyPrice] = strval(temp);
cache_get_row(he, 12, temp), BizzInfo[he][bEntranceCost] = strval(temp);
cache_get_row(he, 13, temp), BizzInfo[he][bTill] = strval(temp);
cache_get_row(he, 14, temp), BizzInfo[he][bLocked] = strval(temp);
cache_get_row(he, 15, temp), BizzInfo[he][bInterior] = strval(temp);
cache_get_row(he, 16, temp), BizzInfo[he][bProducts] = strval(temp);
cache_get_row(he, 17, temp), BizzInfo[he][bMaxProducts] = strval(temp);
cache_get_row(he, 18, temp), BizzInfo[he][bPriceProd] = strval(temp);
cache_get_row(he, 19, temp), BizzInfo[he][b2Till] = strval(temp);
cache_get_row(he, 20, temp), BizzInfo[he][bCena] = strval(temp);
cache_get_row(he, 21, temp), BizzInfo[he][bBarX] = floatstr(temp);
cache_get_row(he, 22, temp), BizzInfo[he][bBarY] = floatstr(temp);
cache_get_row(he, 23, temp), BizzInfo[he][bBarZ] = floatstr(temp);
cache_get_row(he, 24, temp), BizzInfo[he][bMafia] = strval(temp);
cache_get_row(he, 25, temp), BizzInfo[he][bVirtual] = strval(temp);
cache_get_row(he, 26, temp), BizzInfo[he][bType] = strval(temp);
i++;
new typeofbiz[128];
*****ТУТ СОЗДАНИЕ 3Дтекстов, не важно*****
}
printf("[Business] Business #%d loaded", he);
}
printf("[Загрузкa] \tLoadBizz\t\t|\tЗагружено %d",i);
}
else printf("Бизнесов не загружены.");
return true;
}