Stack Size Error
#1

http://puu.sh/1EVBp - Issue from crashdetect plugin.
http://pastebin.com/2pF1um0a - OnDialogResponse
Reply
#2

1.
If you look at dini_intset it's dini_IntSet(file, variable, value). You're doing the following:
pawn Код:
dini_IntSet(file, "Vw",PlayerInfo[playerid][pVw] = 0);
Which is fine until the last param where you are assigning a value to the variable as well as setting it. This may cause errors like the ones you're getting. Just set the value of the variable after InSet to 0 and just use
pawn Код:
dini_IntSet(file, "Vw",PlayerInfo[playerid][pVw]);
For all of them and see if you get any errors.

2. Not sure if udb_hash returns a string or a int value. If it returns a string then you will need to fetch using dini_get.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)