GW1 Bots working in July 2017

03/10/2018 06:53 lemontiger#1246
Is there any way to run multiple instances on multiple clients? As soon as I open more than one gw client it fails to detect any character that is not the first launched client and name detection doesn't work.
03/10/2018 07:24 honigkuchenpferd2#1247
Quote:
Is there any way to run multiple instances on multiple clients? As soon as I open more than one gw client it fails to detect any character that is not the first launched client and name detection doesn't work.
You can try to Edit the .au3 file and add the correct Guild Wars Window Name (Guild Wars1, Guild Wars2, Guild Wars3,...). You can lookup the names in the Task Manager.

Greetz
03/10/2018 14:53 AnonymMouse#1248
Hello guys. I'm pretty new on this forum, and i'd like to know if there is a 'how to' for using this bots !

Can't wait to try them !
03/10/2018 16:00 honigkuchenpferd2#1249
Quote:
Hello guys. I'm pretty new on this forum, and i'd like to know if there is a 'how to' for using this bots !

Can't wait to try them !
Install Autoit and start the .au3 file in the packages. Most of the time there is a how to file as well. If u have any questions you can pm me.

Greetz Honig
03/11/2018 00:32 Underavelvetmoon#1250
Quote:
Originally Posted by lemontiger View Post
Is there any way to run multiple instances on multiple clients? As soon as I open more than one gw client it fails to detect any character that is not the first launched client and name detection doesn't work.
Its likely a problem with your Event Handler. In the code you should have a function called "Event Handler" or you can tell which is the right one because it will call the function "Initialize". Heres a working Event Handler.

Code:
  Func EventHandler()
	Switch   [MENTION=3027413]Gui_[/MENTION]CtrlId
		Case $GUI_EVENT_CLOSE
			Exit
		Case $bStart
			If $bRunning = True Then
				GUICtrlSetData($bStart, "Will pause after this run")
				GUICtrlSetState($bStart, $GUI_DISABLE)
				$bRunning = False
			ElseIf $bInitialized Then
				GUICtrlSetData($bStart, "Pause")
				$bRunning = True
			Else
				$bRunning = True
				GUICtrlSetData($bStart, "Initializing...")
				GUICtrlSetState($bStart, $GUI_DISABLE)
				GUICtrlSetState($txtName, $GUI_DISABLE)
;~ 				WinSetTitle($GUI, "", GUICtrlRead($txtName))
				If GUICtrlRead($txtName) = "" Then
					If Initialize(ProcessExists("gw.exe"), True, True, False) = False Then
						MsgBox(0, "Error", "Guild Wars it not running.")
						Exit
					EndIf
				Else
					If Initialize(GUICtrlRead($txtName), True, True, False) = False Then
						MsgBox(0, "Error", "Can't find a Guild Wars client with that character name.")
						Exit
					EndIf
				EndIf
				GUICtrlSetData($bStart, "Pause")
				GUICtrlSetState($bStart, $GUI_ENABLE)
				WinSetTitle($GUI, "", GetCharname() & " - My Client R Best")
				$bInitialized = True
				$GWPID = $mGWHwnd
			EndIf
	EndSwitch
EndFunc
If that doesnt fix it, then its likely you are using an outdated GWA2.

EDIT: Forgot to say this needs a Button and a Drop down menu to work. Define button as $bStart and drop down menu as $txtName. Also define $bRunning = False, $bInitialized = False and $GWPID = -1 as globals.
03/11/2018 05:16 smeagol94#1251
Hello, i've got a Question on feather farming bot. It says i need space on my inventory and turns off the bot immediatly, even tho my inventory is clean. I'd like to know what's wrong!!! Thanks alot
03/11/2018 09:50 jcfreak25#1252
So I am trying to get the JQ bot going, but it keeps crashing my GW. Any tips?

Do I need to do something before running the bot. I got a few of the other bots going already.
03/11/2018 12:36 Once twice#1253
Hello guys, I was looking at the Zaishen Bot and saw that it picks up all the valuable items. However, it had no line telling the bot to pick up Eternal Blade. According to wiki it should drop there, anyone knows if this is true? If so, shouldn't the bot pick that up, since it is the most valuable item.
03/11/2018 12:42 Equ123#1254
Is there any exploration title bot?
03/11/2018 13:13 Underavelvetmoon#1255
Quote:
Originally Posted by jcfreak25 View Post
So I am trying to get the JQ bot going, but it keeps crashing my GW. Any tips?

Do I need to do something before running the bot. I got a few of the other bots going already.
Quote:
Originally Posted by smeagol94 View Post
Hello, i've got a Question on feather farming bot. It says i need space on my inventory and turns off the bot immediatly, even tho my inventory is clean. I'd like to know what's wrong!!! Thanks alot
Most likely an outdated GWA2. If not then you'll have to look at the code and find out WHERE it crashes and post the code.

Quote:
Originally Posted by Once twice View Post
Hello guys, I was looking at the Zaishen Bot and saw that it picks up all the valuable items. However, it had no line telling the bot to pick up Eternal Blade. According to wiki it should drop there, anyone knows if this is true? If so, shouldn't the bot pick that up, since it is the most valuable item.
If it had no line for Eternal Blade you will have to add it yourself. I do not have the ModelID for it, but I have a script that can find it if you need it.

Quote:
Originally Posted by Equ123 View Post
Is there any exploration title bot?
No. The closest you will get is vanquish scripts, which imo is better since it kills two birds with one stone.
03/11/2018 13:42 AnonymMouse#1256
By the way, is any of those farm good enough for legendary survivor ? :)
03/11/2018 14:15 Equ123#1257
Quote:
Originally Posted by Underavelvetmoon View Post
No. The closest you will get is vanquish scripts, which imo is better since it kills two birds with one stone.
Can you add vanquish bot here please?
03/11/2018 15:09 Equ123#1258
Btw i have some troubles with eotn title package. GW is shuting down after ~30-40min and I have no idea why
03/11/2018 17:36 jcfreak25#1259
Quote:
Originally Posted by Underavelvetmoon View Post
Most likely an outdated GWA2. If not then you'll have to look at the code and find out WHERE it crashes and post the code.



If it had no line for Eternal Blade you will have to add it yourself. I do not have the ModelID for it, but I have a script that can find it if you need it.



No. The closest you will get is vanquish scripts, which imo is better since it kills two birds with one stone.

How do I get my GWA2 updated??

Thanks for the help!!

Edit: Also, can you post a link to those vanq bots you mentioned? :)
03/11/2018 18:33 Jamamon#1260
Quote:
Originally Posted by Marlborobutts View Post
bump
HotKeySet ("{-}", "DisableRender")
HotKeySet ("{[}", "EnableRender")

Func DisableRender()
DisableRendering()
Endfunc

Func EnableRender()
EnableRendering()
Endfunc