When you set the ini paths, it doesn't seem to like it if you have spaces in it, even if you use quotation marks around it. To bypass this "bug", convert the path to the old DOS 8.3 format with the ~ in it
IE, "C:\Program Files\EverQuest\" becomes "C:\progra~1\everqu~1\"
You will have to check in a MS-DOS prompt to get the correct paths, because it might not always be ~1.
Best way to get it is to type in "dir /ad", which tells it to list all directories, and you'll get something like this:
Code: Select all
Volume in drive C is HARD DISK
Volume Serial Number is 0123-4567
Directory of C:\
_RESTORE <DIR> 08-20-02 12:21a _RESTORE
MYDOCU~1 <DIR> 08-20-02 12:25a My Documents
PROGRA~1 <DIR> 08-20-02 12:14a Program Files
RECYCLED <DIR> 08-20-02 1:11a Recycled
WINDOWS <DIR> 08-20-02 12:14a WINDOWS
MYSHAR~1 <DIR> 08-18-03 10:25p My Shared Folder
0 file(s) 0 bytes
6 dir(s) 99,999.99 MB free
Old 8.3 format is on the left, LFN format is on the right.
Follow the path you would need by changing directories, and you'll get the whole path in 8.3 format.