
Originally Posted by
Byrthnoth
You can't.
You need to do your customization after loading using autoexec.
yes you can but it hard to do

Originally Posted by
Buffy
How can I direct windower to use a different init.txt upon bootup for different characters?
you need to create a bat file that moves your init.txt file around like what i did for my 2 different init.txt files 1 for minimal and 1 for normal
here is my bat file for my normal init.txt
Code:
cd C:\Program Files (x86)\Windower\scripts\backup\
copy initnormal.txt "C:\Program Files (x86)\Windower\scripts\init.txt" /y
cd C:\Program Files (x86)\Windower\
start launcher.exe -c launcher.ini
here is the one for my mimimal init.txt
Code:
cd C:\Program Files (x86)\Windower\scripts\backup\
copy initMinimal.txt "C:\Program Files (x86)\Windower\scripts\init.txt" /y
cd C:\Program Files (x86)\Windower\
start launcher.exe -c Minimal.ini
the best part of how i did this is when you run the bat it will also start windower
all you need to do is put your modified init.txt into the Windower\scripts\backup
then edit the above bat files with your custom names for your edited init.txt files (they are bolded)