06.10.2014, 03:13
I remember having this issue and the easiest fix was to edit the y_ini include.
Open up the y_ini.inc file that you use to compile and search for:
Then replace this line:
With this:
For whatever reason valstr can't handle numbers over 1.4 billion or so. Also, if you don't wish to edit the y_ini include then you can use the fixes include.
Open up the y_ini.inc file that you use to compile and search for:
Code:
stock INI_WriteInt
Code:
valstr(str, data);
Code:
format(str, sizeof(str), "%d", data);