This was a bit hard to search for (since ini is a 3 letter word^^), sorry if its a repost.
I found these scripts:
Ini to object:
http://mpscripts.net/code.php?id=12
Read INI Files:
http://mpscripts.net/code.php?id=23
Text Files Operations:
http://mpscripts.net/code.php?id=7
But they dont have all the commands that i need.
I would like a script that has these commands:
ReadIni(path, header, key) -> Returns the key value
WriteIni(path, header, key, value) -> Writes the value beneath the header, creates a new header if it does not already exist.
DeleteIni(path, header) -> Deletes the header, keys and the values
DeleteIni(path, header, key) -> Deletes the key and the value
Or is there an easier way to store simple data?
My data will be used to store game statistics etc.