GW Working Bots 2020

06/12/2020 08:25 martyn12444#571
Quote:
Originally Posted by list comprehension View Post
Yea, that is about all I can think of really. Could be a bug in the original bot as well as I didn't change much with the logic, just really fixes to get it to work with modern public gwa2.
Well I've tried everything from restarting Guild Wars to restarting my PC and it just won't begin the run in Boreas for some reason... :/

Unfortunately I don't have any coding ability to look at it myself
06/12/2020 09:10 list comprehension#572
Quote:
Originally Posted by martyn12444 View Post
Well I've tried everything from restarting Guild Wars to restarting my PC and it just won't begin the run in Boreas for some reason... :/

Unfortunately I don't have any coding ability to look at it myself
It has 2 checks to stop running if the storage is full or if there are no lockpicks in the players inventory are worth making sure aren't currently in effect.
06/12/2020 10:24 martyn12444#573
Quote:
Originally Posted by list comprehension View Post
It has 2 checks to stop running if the storage is full or if there are no lockpicks in the players inventory are worth making sure aren't currently in effect.
I have a couple of stacks of lockpicks in the inventory - tried removing one in case it doesn't like more than one stack.

Also loads of storage space from panel 4 onwards... The first 3 are full though. Reckon that might have something to do with it?
06/12/2020 10:35 list comprehension#574
Quote:
Originally Posted by martyn12444 View Post
I have a couple of stacks of lockpicks in the inventory - tried removing one in case it doesn't like more than one stack.

Also loads of storage space from panel 4 onwards... The first 3 are full though. Reckon that might have something to do with it?
Yep, first 3 full will do it. Move some items out of there. The accounts I tested on only had the stock panels so that is where the check for empty space is.

Quote:
Originally Posted by 0815Storm View Post
Do you maybe have an alternate Build without PVE Skills? Is this possible? Unfortanetely i dont have any PVE Skills on my Melees :rolleyes:
I think it will run alright if you just leave blank spots in the build where the pve skills would be. It will have slower runs and less survivability but I think it will still work. Alternative is to change the build as the code is there. I am not the original author of the bot, just did a bunch of fixes so it would work again and slight changes for my own use.
06/12/2020 13:24 0815Storm#575
Thanks for that idea. I will test it later. Otherwhise i will go to get the pve skills. I am sure, i will need them someday :D
06/12/2020 20:30 lemoutondu10#576
Does someone have a bot to xp in early nf?
06/12/2020 21:57 Joey87#577
Hello,
Please SOmebody have iron bot farm? Thx all for reading this :)
06/13/2020 16:26 zolf02#578
RifleMan : it looks like your bot always makes the district hop event when the checkbox is unchecked.

Is it just me ?
06/13/2020 21:37 sarah0#579
Is this one working for anybody?

When i start it, there won´t appear any gui. There´s no error message.
GW is running, and i got both quests.


Quote:
Originally Posted by Aimcorp View Post
Picks up golds/gold,
runs the basic ss/lb farm route with the worms.
you need "A Show of Force" and "Requiem for a Brain".

toggle rendering works, atm no id/sell


if you have questions, i probably wont be able to answer them,
if you have problems, i probably wont be able to solve them.
have fun.
06/13/2020 23:16 Aimcorp#580
@[Only registered and activated users can see links. Click Here To Register...] something broke it, i have no idea what tho.
i may look into it before double points week, but atm im busy
06/14/2020 04:21 RiflemanX#581
Quote:
Originally Posted by zolf02 View Post
RifleMan : it looks like your bot always makes the district hop event when the checkbox is unchecked.

Is it just me ?
Ok, I will take a look and see what the issue is.
06/16/2020 01:13 jaredk9231#582
I am working with the ferndale bot.
Runs are averaging around 50 minutes but I want to see if other builds are faster.
I was able to set up a logging file, and have the $TimerTotal print to it. Problem is I am not sure what format/timing is being printed. Anyone have an idea of if its in ms, or a computer time stamp so I can work on converting it?
06/16/2020 01:41 RiflemanX#583
Quote:
Originally Posted by jaredk9231 View Post
I am working with the ferndale bot.
Runs are averaging around 50 minutes but I want to see if other builds are faster.
I was able to set up a logging file, and have the $TimerTotal print to it. Problem is I am not sure what format/timing is being printed. Anyone have an idea of if its in ms, or a computer time stamp so I can work on converting it?
It is usually script based and regular time and not read from your computers OS. Below is the standard format although there are a few other common variations.

Code:
#Region GUI Enhancement
Func GetTime()
   Local $Time = GetInstanceUpTime()
   Local $Seconds = Floor($Time/1000)
   Local $Minutes = Floor($Seconds/60)
   Local $Hours = Floor($Minutes/60)
   Local $Second = $Seconds - $Minutes*60
   Local $Minute = $Minutes - $Hours*60
   If $Hours = 0 Then
	  If $Second < 10 Then $InstTime = $Minute&':0'&$Second
	  If $Second >= 10 Then $InstTime = $Minute&':'&$Second
   ElseIf $Hours <> 0 Then
	  If $Minutes < 10 Then
		 If $Second < 10 Then $InstTime = $Hours&':0'&$Minute&':0'&$Second
		 If $Second >= 10 Then $InstTime = $Hours&':0'&$Minute&':'&$Second
	  ElseIf $Minutes >= 10 Then
		 If $Second < 10 Then $InstTime = $Hours&':'&$Minute&':0'&$Second
		 If $Second >= 10 Then $InstTime = $Hours&':'&$Minute&':'&$Second
	  EndIf
   EndIf
   Return $InstTime
EndFunc

Func AvgTime()
   Local $Time = GetInstanceUpTime()
   Local $Seconds = Floor($Time/1000)
   $TotalSeconds += $Seconds
   Local $AvgSeconds = Floor($TotalSeconds/$Runs)
   Local $Minutes = Floor($AvgSeconds/60)
   Local $Hours = Floor($Minutes/60)
   Local $Second = $AvgSeconds - $Minutes*60
   Local $Minute = $Minutes - $Hours*60
   If $Hours = 0 Then
	  If $Second < 10 Then $AvgTime = $Minute&':0'&$Second
	  If $Second >= 10 Then $AvgTime = $Minute&':'&$Second
   ElseIf $Hours <> 0 Then
	  If $Minutes < 10 Then
		 If $Second < 10 Then $AvgTime = $Hours&':0'&$Minute&':0'&$Second
		 If $Second >= 10 Then $AvgTime = $Hours&':0'&$Minute&':'&$Second
	  ElseIf $Minutes >= 10 Then
		 If $Second < 10 Then $AvgTime = $Hours&':'&$Minute&':0'&$Second
		 If $Second >= 10 Then $AvgTime = $Hours&':'&$Minute&':'&$Second
	  EndIf
   EndIf
   Return $AvgTime
EndFunc

Func TimeUpdater()
	$Seconds += 1
	If $Seconds = 60 Then
		$Minutes += 1
		$Seconds = $Seconds - 60
	EndIf
	If $Minutes = 60 Then
		$Hours += 1
		$Minutes = $Minutes - 60
	EndIf
	If $Seconds < 10 Then
		$L_Sec = "0" & $Seconds
	Else
		$L_Sec = $Seconds
	EndIf
	If $Minutes < 10 Then
		$L_Min = "0" & $Minutes
	Else
		$L_Min = $Minutes
	EndIf
	If $Hours < 10 Then
		$L_Hour = "0" & $Hours
	Else
		$L_Hour = $Hours
	EndIf
	GUICtrlSetData($TotTimeCount, $L_Hour & ":" & $L_Min & ":" & $L_Sec)
EndFunc
#EndRegion
06/16/2020 02:23 jaredk9231#584
Thank you, was able to figure it out. Testing it now to see if it logs each runs time correctly
06/16/2020 15:31 Pheliepee#585
Hello,

i need help. The Feather bot ist not running :( ... do u can help me?