
Originally Posted by
sucidal_boredaholic
Please help im trying to save the information in a txt file or a ini file... just random information and i cant figure it out... for what i have is
WriteINI('Autospammer', 'Combo1', 'bob.txt', 'bob.ini'); yeah... i took a swing at it just to see if it would work. it doesnt and it says
Successfully compiled
[Runtime Error] : Exception: Unable to create directory in line 37 in script C:\Program Files\SCAR 3.12\Scripts\gaia test.scar
so... how do i do this?

Your problem is that you filled in 'bob.ini' as a path. 'bob.ini' is not an entire path, take this as example :
SCAR Code:
WriteINI('TestSection', 'TestKey', 'TestKeyValue', 'C:\Test.INI');
WriteINI('TestSection', 'TestKey', 'TestKeyValue', AppPath + 'Test.INI');