GW1 Bots working in July 2017

08/29/2017 17:13 calypso974fire#256
how old is this bot ? because a lot of things changed in those zones following Winds of Change.

The just ran the bot and it meet a group of Peacekeepers than whipe me out.
I guess you will need to find something else to get dusts.
08/29/2017 17:27 Lillebror_1#257
Quote:
Originally Posted by calypso974fire View Post
how old is this bot ? because a lot of things changed in those zones following Winds of Change.

The just ran the bot and it meet a group of Peacekeepers than whipe me out.
I guess you will need to find something else to get dusts.
its like 2 years old :D but i dont have any woc activated :S
08/30/2017 00:25 sasuke34#258
Someone knows why Vaettir 2 bot bug sometimes, on the Identifying step, he doesn't identify solo sometimes so i can't let the bot run solo
08/30/2017 08:59 calypso974fire#259
that's strange. i never noticed a bug in the identifying step.
How often does it happen ?
08/30/2017 11:29 Lillebror_1#260
the bot stays even if it should keep running :S and i dont have any woc quest or some :D
08/30/2017 15:24 mhaendler#261
Quote:
Originally Posted by Lillebror_1 View Post
the bot stays even if it should keep running :S and i dont have any woc quest or some :D
Normally it should run out and kill the nightmares there "its mentioned inside the source code of the bot" but you run into "peacekeeper" so i think war in kryta or something is activated

//EDIT:

I havent tried the bot just was looking into the source code... but thats my thought about your problem
08/31/2017 09:45 Lillebror_1#262
well i check and its now activated :S try it on ur computer plz :S cuz on mine it dossent works :S and no i dont have kryta mish or anything :S

btw how do i do so my cof bot take the shirne so i can get r3 delver so i can make cons ? xd
08/31/2017 13:10 strecky#263
Quote:
Originally Posted by calypso974fire View Post
WOW you are awesome mhaendler !
thank you very much, i updated the VQ function with this and it worked perfectly:

Code:
Func VQ()
	CurrentAction("Waiting to really complete load")
	rndslp(10000)
	CurrentAction("Poping Legionnaire thanks to mhaendler !!")
	UseLegionStone()
as i understand the function: to scan all the items one by one in the 4 bags until you find the idem with the code 37810 (previously define with a constant). Once you find it you use it with the fonction UseItem.

that's really good. simple but very effective.

For the lockpicks, i just excluded the 4th bag from the selling function. that wait i can keep idems on by characters and i'm sure they wont be sold.

My next step was to find a way to open chests and pick up loots during the runs. So i spent a bit of time this moring trying to find a solution to open chests during VQ and i found a way to do it.

i'm not a coder so my solution might be kinda trashy to some of you, but i didn't wanted to use whatever pepole post but i wanted to contribute :)

Here is my solution :

i picked up this code from the chest bot and made it complient with the luxon bot ($DeadOnTheRun = 0 vs Not $WeAreDead for exemple) :

Code:
Func DoChest()
	If $DeadOnTheRun = 0 then CurrentAction("Going To open This chest")
	If $DeadOnTheRun = 0 then GoSignpost(-1)
	local $TimeCheck = TimerInit()
	If $DeadOnTheRun = 0 then $chest = GetCurrentTarget()
	If $DeadOnTheRun = 0 then $oldCoordsX = DllStructGetData($chest, "X")
	If $DeadOnTheRun = 0 then $oldCoordsY = DllStructGetData($chest, "Y")
	If $DeadOnTheRun = 0 then
		Do
			rndslp(500)
		Until CheckArea($oldCoordsX, $oldCoordsY) Or TimerDiff($TimeCheck) > 90000 Or $DeadOnTheRun = 1
	EndIf
	If $DeadOnTheRun = 0 then rndslp(1000)
	If $DeadOnTheRun = 0 then OpenChest()
	If $DeadOnTheRun = 0 then rndslp(1000)
	If $DeadOnTheRun = 0 then TargetNearestItem()
	If $DeadOnTheRun = 0 then rndslp(500)
	If $DeadOnTheRun = 0 then $item = GetCurrentTarget()
	If $DeadOnTheRun = 0 then
		Do
			If $DeadOnTheRun = 0 then rndslp(500)
			If $DeadOnTheRun = 0 then PickUpItem($item)
		Until DllStructGetData($item, 'AgentID') = 0 Or TimerDiff($TimeCheck) > 90000 or $DeadOnTheRun = 1
	EndIf
EndFunc   ;==>DoChest

Func LookForChest()
	If $DeadOnTheRun = 0 then TargetNearestItem()
	If $DeadOnTheRun = 0 then rndslp(500)
	If DllStructGetData(GetCurrentTarget(), 'Type') = 512 and $DeadOnTheRun = 0 Then
		If $DeadOnTheRun = 0 then DoChest()
		If $DeadOnTheRun = 0 then rndslp(500)
	EndIf
EndFunc
the i added the fonction LookForChest() before moving to each aggro :

Code:
	If $DeadOnTheRun = 0 Then $enemy = "Yeti"
	[COLOR="red"]If $DeadOnTheRun = 0 Then LookForChest()[/COLOR]
	If $DeadOnTheRun = 0 Then AggroMoveToEx(-17348, -9895, $enemy)

	If $DeadOnTheRun = 0 Then $enemy = "Oni and Wallows"
	[COLOR="red"]If $DeadOnTheRun = 0 Then LookForChest()[/COLOR]
	If $DeadOnTheRun = 0 Then AggroMoveToEx(-14702, -6671, $enemy)

	If $DeadOnTheRun = 0 Then $enemy = "Oni and Wallows"
	[COLOR="Red"]If $DeadOnTheRun = 0 Then LookForChest()[/COLOR]
	If $DeadOnTheRun = 0 Then AggroMoveToEx(-11080, -6126, $enemy, 2000)
This might not be very efficient nor accurate, but it works : the bot oppened a chest after killing Yetis !!! :)

If someone has a better idea or a better way to do this i'm available to test it !
wen du fertigbist kannste den dan hier uploaden ?^^
08/31/2017 14:28 Kibeth_1#264
how do i get the luxon (cavalon) bot to work? And it would be nice to "switch render" like in the JQ bot...is this possible?

Edit: Found the Mistake...apparently you need to be min. friend of the luxon to get the shrine bonus xD
did it manually and now it works fine :)
08/31/2017 17:18 calypso974fire#265
Quote:
Originally Posted by Lillebror_1 View Post
well i check and its now activated :S try it on ur computer plz :S cuz on mine it dossent works :S and no i dont have kryta mish or anything :S

btw how do i do so my cof bot take the shirne so i can get r3 delver so i can make cons ? xd
just use the Kilroy bot to get your R3. you will get the survivor title at the same time ;)
08/31/2017 22:49 Lernhilfe#266
Hey Guys. I have a problem with the "Title Package Bot". Concretly with the "Kurzik Bot" in House zu Heltzer.

The day before yesterday (is this correct english? xD) the bot does 9 runs (realy slowly, 120 min/run - is this normal?). After that 9 runs i take a look on the PC where the bot works, and i see a Guild Wars window, where i can choose between "Roleplay" and "PvP". But i dont have any free character slot. I close the Game and start it again, log into Account and all is ok. All Characters are there. So i startet the bot again.

After 1 run the Game crashes. So i testet Yesterday. After 0 runs, the Game crashes. Today after 1 run the Game crashes.

Interface is in english and my heroes according to the How-To.

I hope anyone can help, i thank u very much :D
09/01/2017 10:44 tolerantfox#267
Quote:
Originally Posted by Lernhilfe View Post
Hey Guys. I have a problem with the "Title Package Bot". Concretly with the "Kurzik Bot" in House zu Heltzer.

The day before yesterday (is this correct english? xD) the bot does 9 runs (realy slowly, 120 min/run - is this normal?). After that 9 runs i take a look on the PC where the bot works, and i see a Guild Wars window, where i can choose between "Roleplay" and "PvP". But i dont have any free character slot. I close the Game and start it again, log into Account and all is ok. All Characters are there. So i startet the bot again.

After 1 run the Game crashes. So i testet Yesterday. After 0 runs, the Game crashes. Today after 1 run the Game crashes.

Interface is in english and my heroes according to the How-To.

I hope anyone can help, i thank u very much :D
I had the same bug as well, scared the shit out of me but I never saw it happening live so I don't know what's going wrong. :/ I have a different version where I fixed a lot of bugs but I'm currently not home. In one week I can help you out if you still need it then. I need to do kurzick too so we can work together on the issue ^^
09/01/2017 15:08 Lernhilfe#268
Ok sounds good. I will wait for you :D
09/04/2017 19:33 Demogan#269
I'd also like to help you as I'm also looking for kurz title x)
09/05/2017 16:10 Chudly#270
The chest running bot outside Boreal station doesn't purchase any identification kits or identify any of the gold items; is anyone else having this problem?