Hi! I'm not sure if this is the right place for this question, but hopefully someone might be able to lend me a hand. So I have several ini files being loaded, and their values being put into different arrays. This all works fine, and I know that the correct values are being added to my arrays, however, the command for setting a value in the ini file does not seem to be working...
As I understand it, I am supposed to call
set lookup INI_Save_1 , "Main/Created" , "0"
if I want to replace the current value of the key "Created" in my INI_Save_1 ini file. **according to the help docs...**
I am calling the set lookup command like this:
if SELECTED_SAVE = 3 then set lookup INI_Save_3 , "Main/Created" , "0"
and my ini file looks like this:
[Main]
Version=1
Created=1
[General]
Char=null
CharTex=null
Name=null
yet everytime I try it, I dont get an error or anything, but the value is not changed.
Thanks in advance! //Anton