Zaključano

[POMOC] Error

pre 10 godina
277
pregleda
4
postova
Ova tema je zaključana. Samo moderatori i administratori mogu odgovarati.
branac_rocky
Shot Caller
pre 10 godina
table overflow: "staging buffer"

Skripta koju koristim: Edit NL-a
Detaljan opis problema: Kada sam dodao par stvari u ProcitajLiniju dobio sam error koji ne znam riješiti.
Dio skripte:
public ProcitajLiniju(playerid, linija[])
{
    new xdata;
        sscanf(linija, "p<|>isssiiiiiiiiisiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiisiiiiiisssiiiiiiiiissiiiiiiiissiiiiiiiiiiiiiiiiiiiiiiiiiiiiii",
        xdata, PI,PI,PI, PI, PI, PI, PI,PI, PI,
        PI, PI, PI, PI, PI,PI, PI, PI,
        PI, PI, PI, PI,PI, PI, PI, PI,
        PI, PI, PI,PI, PI, PI, PI, PI,
        PI,PI, PI, PI, PI, PI, PI,
        PI, PI, PI, PI, PI,PI,
        PI, PI,PI, PI, PI,PI, PI,
        PI, PI, PI, PI,PI, PI, PI,
        PI,PI, PI, PI, PI,PI,PI,
        PI, PI, PI, PI, PI,PI, PI, PI,
        PI, PI, PI,PI, PI, PI, PI, PI, PI,PI,
        PI, PI, PI, PI, PI, PI, PI, PI,
        PI, PI, PI, PI, PI, PI, PI, PI, Dzep, Dzep, Dzep, Dzep, Dzep,
        Dzep, Dzep, Dzep, Dzep, Stvari, Stvari, Stvari, Stvari,
        Stvari, Stvari, Stvari,Stvari, Stvari, Stvari, Stvari);
}

Neke slike/video za lakse dobivanje pomoci(neobavezno)http://prntscr.com/8rjvr2

Predpostavljam da je problem prevelik broj linija,ali ne znam kako ću drugačije napraviti ..Pa ako netko ima ideja.
Vodka Play
Crime Lord
pre 10 godina
102 - table overflow: table name
An internal table in the pawn parser is too small to hold the required data. Some tables are dynamically growable, which means that there was insufficient memory to resize the table. The “table name” is one of the following:
“staging buffer”: the staging buffer holds the code generated for an expression before it is passed to the peephole optimizer. The
staging buffer grows dynamically, so an overflow of the staging buffer basically is an “out of memory” error.
“loop table”: the loop table is a stack used with nested do, for, and while statements. The table allows nesting of these statements up to 24 levels.
“literal table”: this table keeps the literal constants (numbers, strings) that are used in expressions and as initiallers for arrays. The literal table grows dynamically, so an overflow of the literal table basically is an “out of memory” error.
“compiler stack”: the compiler uses a stack to store temporary information it needs while parsing. An overflow of this stack is probably caused by deeply nested (or recursive) file inclusion. The compiler stack grows dynamically, so an overflow of the compiler stack basically is an “out of memory” error.
“option table”: in case that there are more options on the command line or in the response file than the compiler can cope with.
Marjan_King
Kingpin
pre 10 godina
To mu je sigurno pomoglo..
Vodka Play
Crime Lord
pre 10 godina
Quote from October 15, 2015, 1:49 pm:
To mu je sigurno pomoglo..

Bitno da je tvoj post koristan 😉
Sve piÅ¡e za one koji znaju da čitaju 😉

Morate biti prijavljeni da biste odgovorili na ovu temu.

Prijava