
Originally Posted by
'Zerocool2024',index.php?page=Thread&postID=165729 #post165729
Ok, so I went over this post a little bit and did not see
anyone mention getting IS to look at other folders to get my other toons working
in their own folder. So I went on IRC and Zanthor showed me how to get the
Profile going in the game configuration tab. Now, it loads up 5 blank wow
screens "Blank meaning the username is gone" and all of the wow's are
still the main, and not "Main, slave, slave, slave, slave". I am
guessing there is a file or something that I need to edit to get IS to look at
those folder and make the wow screens have the right username set to the right
wow folder.
Can't believe I might can help with something here!
This file is called wow.iss. There is probably a better way to do this with using variables but I like to destroy good scripts that others make and make them just barely work. This will open 5 wow sessions each with the proper username. You have to copy the current config.wtf and paste 5 times then go in and change the username in each one. Name them config1.wtf, config2.wtf, etc.
If the line
Code:
SET accountName "accountname"
isn't there just add it and save the config#.wtf file.
edit: I have two folders. One for my main and one for my alts. I don't need to redirect the one on my main so there are only 4 config.wtf redirects in the script I use.
Code:
function main(int clients)
{
open "dkmain" "dkmain profile"
/* Wait 2 seconds (wait takes tenths of seconds) */
wait 30
open "dkalt" "dkalt profile" -prestartup "fileredirect config.wtf config1.wtf"
/* Wait 2 seconds (wait takes tenths of seconds) */
wait 30
open "dkalt" "dkalt profile" -prestartup "fileredirect config.wtf config2.wtf"
/* Wait 2 seconds (wait takes tenths of seconds) */
wait 30
open "dkalt" "dkalt profile" -prestartup "fileredirect config.wtf config3.wtf"
/* Wait 2 seconds (wait takes tenths of seconds) */
wait 30
open "dkalt" "dkalt profile" -prestartup "fileredirect config.wtf config4.wtf"
/* Wait 2 seconds (wait takes tenths of seconds) */
wait 30
}
Connect With Us