Nah, decide if you want it from vault or from file.
And don't use this:
Code:
new configDir[128]
format(gXpfile,127,"%s/xu/lvl.ini",configDir)
get_datadir(gXpfile,127,"%s/xu/lvl.ini",configDir)
rather sth like:
Code:
new configDir[128]; // config, thought it was data? :)
get_datadir(configDir, 127);
format(gXpfile, 127, "%s/xu/lvl.ini", configDir);
And then operate on gXpfile.
__________________