Also, I know that the standard reply is:
Use FileOpen, FileWrite, FileRead and FileClose. See the Archive for examples.But I'm having some troubles with that🙁
I should also note that the files I'm working on is not a REAL .ini, the game (DeusEx) just has it named that way, but .ini commands such as WriteINIStr still work🙂
So about halfway down in the files there is the following:
[Core.System]
PurgeCacheDays=30
SavePath=..\Save
CachePath=..\Cache
CacheExt=.uxx
Paths=..\TNM\Music\*.u
Paths=..\TNM\Maps\*.dx
Paths=..\TNM\Textures\*.utx
Paths=..\TNM\Sounds\*.uax
Paths=..\TNM\Music\*.umx
And I want to modify it so that I have this:
[Core.System]
PurgeCacheDays=30
SavePath=..\Save
CachePath=..\Cache
CacheExt=.uxx
Paths=..\Music\*.u
Paths=..\Maps\*.dx
Paths=..\Textures\*.utx
Paths=..\Sounds\*.uax
Paths=..\Music\*.umx
Any help would be greatly appreciated🙂