02.01.2015, 17:44
Hey guys, so what I crashed into was this error: fatal error 102: table overflow: "staging buffer"
There needs to be alot loaded thats why it has over 100 cache_get_row. If I wipe out half of the lines it compiles just fine but I really need these lines. Any help is appreciated
There needs to be alot loaded thats why it has over 100 cache_get_row. If I wipe out half of the lines it compiles just fine but I really need these lines. Any help is appreciated
pawn Код:
forward OnAccountLoad(playerid);
public OnAccountLoad(playerid)
{
PlayerInfo[playerid][pHealth] = cache_get_row_float(0, 4, g_Handle),
PlayerInfo[playerid][pPosX] = cache_get_row_float(0, 5, g_Handle),
PlayerInfo[playerid][pPosY] = cache_get_row_float(0, 6, g_Handle),
PlayerInfo[playerid][pPosZ] = cache_get_row_float(0, 7, g_Handle),
PlayerInfo[playerid][pPosA] = cache_get_row_float(0, 8, g_Handle),
PlayerInfo[playerid][pInt] = cache_get_row_int(0, 9, g_Handle),
PlayerInfo[playerid][pVW] = cache_get_row_int(0, 10, g_Handle),
PlayerInfo[playerid][pSkin] = cache_get_row_int(0, 11, g_Handle),
PlayerInfo[playerid][pBanned] = cache_get_row_int(0, 12, g_Handle),
//+100 lines of cache_get_row ....
}