Different Config Files for WOW
Moderators: Lavish Software Team, Moderators
-
- GamingTools Subscriber
- Posts: 31
- Joined: Fri Jul 16, 2004 2:46 am
Different Config Files for WOW
Lax,
I think WOW keeps its current user settings in config.wtf, is there a way i can get IS to use a different one for the 2 accounts i use, I use quite complicated login names and i know im sad but i cant remember them easily, it would be nice to choose either account when i load wow through IS.
I did a search for config.wtf and looked throught the posts but see nothing.
Sorry if its been asked before..
Mark
I think WOW keeps its current user settings in config.wtf, is there a way i can get IS to use a different one for the 2 accounts i use, I use quite complicated login names and i know im sad but i cant remember them easily, it would be nice to choose either account when i load wow through IS.
I did a search for config.wtf and looked throught the posts but see nothing.
Sorry if its been asked before..
Mark
I have a modified AutoLogin.iss script that takes a login and password as two parameters when calling the script, and I have two profiles set up for WoW, each one calling AutoLogin with a different username and password.
If you'd like, I can post it on ISMods and help you set it up, or you can wait on Lax. ; )
If you'd like, I can post it on ISMods and help you set it up, or you can wait on Lax. ; )
-
- GamingTools Subscriber
- Posts: 31
- Joined: Fri Jul 16, 2004 2:46 am
If you want, you can use file redirection in pre-startup to change config.wtf to any file of your choice, and it will use that instead. An example used for EQ1 is in DefaultPreStartup.iss
EQ1 uses eqlsplayerdata.ini and eqclient.ini for settings. You'll note the INIRedirect command doing basically the same thing as the second FileRedirect -- this is because EQ1 uses eqclient.ini both as an INI file, and as a normal data file through the Win32 API. You only need to worry about FileRedirect for config.wtf.
Anyway, you can try this in your WoW game pre-startup:
Code: Select all
FileRedirect eqlsPlayerData.ini "eqlsPlayerData-${Profile}.ini"
FileRedirect eqclient.ini "eqclient-${Profile}.ini"
INIRedirect eqclient.ini * * "eqclient-${Profile}.ini" * *
Anyway, you can try this in your WoW game pre-startup:
Code: Select all
FileRedirect config.wtf "config-${Profile}.wtf"
-
- GamingTools Subscriber
- Posts: 31
- Joined: Fri Jul 16, 2004 2:46 am
ok i posted this
into
PreInit.iss
is that right ?
Code: Select all
switch "${Game.Name}"
{
case EverQuest
FileRedirect eqlsPlayerData.ini "eqlsPlayerData-${Profile}.ini"
FileRedirect eqclient.ini "eqclient-${Profile}.ini"
INIRedirect eqclient.ini * * "eqclient-${Profile}.ini" * *
call EQSession
break
case Guild Wars
noparse alias fullscreen "WindowSize -rescale -fullscreen;WindowPosition -stealth -viewable ${Display.DesktopX},${Display.DesktopY};fullscreenmouse"
break
[color=Red]case World of Warcraft
FileRedirect config.wtf "config-${Profile}.wtf"
break[/color]
PreInit.iss
is that right ?
-
- GamingTools Subscriber
- Posts: 31
- Joined: Fri Jul 16, 2004 2:46 am