Quote:
Originally Posted by kendor
change the "-" in the save.ini to "/", also make sure that if you have english keyboard to replace the "ö" to "b" in the save.ini and in your GW setting or you will leave many item on the ground like I just did last night ^^ thx again to the creator of this great tool^^
can anyone tell me how to change the window name of guild wars? I keep just getting 2 Guild Wars running^^ not a Guild Wars and a GW2 kktycya
|
Yeah I realized I was being a lazy-ass and decided to just open up the source and fix it myself.
If you're in the same boat as me, I'm here to help.
Open up the source in notepad / your autoit editor. Search for "Func GOOUT()".
You should see this:
PHP Code:
RNDSLP(1000)
KEYSEND("-")
RNDSLP(100)
KEYSEND("r")
RNDSLP(100)
KEYSEND("e")
RNDSLP(100)
KEYSEND("s")
RNDSLP(100)
KEYSEND("i")
RNDSLP(100)
KEYSEND("g")
RNDSLP(100)
KEYSEND("n")
RNDSLP(100)
KEYSEND("RETURN")
Replace that with this:
PHP Code:
RNDSLP(1000)
KEYSEND("-")
RNDSLP(100)
KEYSEND("/")
RNDSLP(100)
KEYSEND("r")
RNDSLP(100)
KEYSEND("e")
RNDSLP(100)
KEYSEND("s")
RNDSLP(100)
KEYSEND("i")
RNDSLP(100)
KEYSEND("g")
RNDSLP(100)
KEYSEND("n")
RNDSLP(100)
KEYSEND("RETURN")
Compile using au2exe (NOT 64-bit version) and you're done. Don't forget to put this newly compiled exe in the folder containing save.ini and update.ini, or the bot won't work.
If you don't know how to compile it... google.
I know there are many other little changes you could do to the script to make it more user friendly, but this way you're only changing one thing, you can poke around if you want to change more. Many thanks to Studen!