[2022/2023] Guild Wars working bots

10/10/2023 15:18 Razerb#391
Quote:
Originally Posted by Chuga View Post
tried to ; the lines but in doing so it make the bot run and do nothing.
Delete the Line its work for me
10/11/2023 06:54 Chuga#392
Quote:
Originally Posted by Razerb View Post
Delete the Line its work for me
deleted them

ran the bot and it just sits there doing nothing still.
10/11/2023 08:31 adgjk#393
Quote:
Originally Posted by Chuga View Post
deleted them

ran the bot and it just sits there doing nothing still.

Hi, it seems the issue was that those functions where on the GWA2 header as well, you can't have duplicates if one file includes the other, it will count as duplicates,

I did some fixing and deleted all the duplicated functions and it starts,

There you have it,

Regards,

Nitta,
10/11/2023 09:23 Chuga#394
thanks, but even this one just sits there doing nothing. I don't know what is wrong.

edit: item and salv kits are in inventory
10/11/2023 22:06 adgjk#395
Quote:
Originally Posted by Chuga View Post
thanks, but even this one just sits there doing nothing. I don't know what is wrong.

edit: item and salv kits are in inventory
Just to be sure, you are placing the model ID of the items you want to savage right? As the Bot suggests,

You want to savage item with model ID Dark_Remains = 522 for example,

You need to write that "522" into the text box before using it,

KR,
10/12/2023 00:39 Xebor#396
Quote:
Originally Posted by Chuga View Post
thanks, but even this one just sits there doing nothing. I don't know what is wrong.

edit: item and salv kits are in inventory
Use this one instead, it's better anyway, I included the Global Items file to this one so you can look up the numbers to salvage, remember to Add SalvItem or it won't know what to do.
10/12/2023 02:55 Chuga#397
yes

correct id of item

with that and salv kits in invo.

I use to work this years ago. Other bots run fine for me. guess I have to use an auto clicker instead, but I really liked this salvage bot, was very fast.
10/12/2023 14:01 propuser#398
I have been trying to use the bot to lvl up from 11 to 20 but it seems that something is not working, it crashes when going to bandits.

I was following the instructions in "How to use it":
REQUIREMENTS for LDoA 11-20:
- Character must be level 10.
- Get a weapon on the character.
- Do all quests from your primary and secondary (if you have one) profession to get all skills (or buy them to the skill trainer).
The bot won't work properly if a skill is missing in the build.
- Get the Farmer Hamnet Vanguard quest from Langmar at Ascalon City.


It's a GWToolbox interference. Closing it the bot works. So in the "How to use it" please remember: "Without GWToolbox"
10/12/2023 16:26 Xebor#399
Quote:
Originally Posted by Chuga View Post
yes

correct id of item

with that and salv kits in invo.

I use to work this years ago. Other bots run fine for me. guess I have to use an auto clicker instead, but I really liked this salvage bot, was very fast.
"guess I have to use an auto clicker instead". Why? the salvage bot I posted works and it's quick. the only thing I use an auto clicker for is to sell to traders.
10/13/2023 14:41 Chuga#400
I tried that bot, it works. It disconnects me after a few salvages so I can't use that either.
10/14/2023 04:31 ک‎ㅌrㅁ#401
Code:
Func _salvage()
	Local $lquantityold, $loldvalue
	salvagekit()
	Local $lsalvagekitid = findsalvagekit()
	Local $lsalvagekitptr = getitemptr($lsalvagekitid)
	For $bag = 1 To 4
		$lbagptr = getbagptr($bag)
		$lbagp = getbag($bag)
		If $lbagptr = 0 Then ContinueLoop
		For $slot = 1 To memoryread($lbagptr + 32, "long")
			$litem = getitemptrbyslot($lbagptr, $slot)
			$aitem = getitembyslot($bag, $slot)
			out("getcansalvage($litem)")
			If NOT getcansalvage($litem) Then ContinueLoop
			out("Salvaging : " & $bag & "," & $slot)
			$lquantity = memoryread($litem + 76, "byte")
			$itemmid = memoryread($litem + 44, "long")
			$itemrarity = getrarity($aitem)
			If $itemrarity = $rarity_white OR $itemrarity = $rarity_blue Then
				For $i = 1 To $lquantity
					If memoryread($lsalvagekitptr + 12, "ptr") = 0 Then
						salvagekit()
						$lsalvagekitid = findsalvagekit()
						$lsalvagekitptr = getitemptr($lsalvagekitid)
					EndIf
					$lquantityold = $lquantity
					$loldvalue = memoryread($lsalvagekitptr + 36, "short")
					startsalvage($aitem)
					Local $ldeadlock = TimerInit()
					Do
						Sleep(200)
					Until memoryread($lsalvagekitptr + 36, "short") <> $loldvalue OR TimerDiff($ldeadlock) > 5000
				Next
			ElseIf $itemrarity = $rarity_purple OR $itemrarity = $rarity_gold Then
				$itemtype = memoryread($litem + 32, "byte")
				If $itemtype = 0 Then
					ContinueLoop
				EndIf
				If memoryread($litem + 12, "ptr") <> 0 Then
					If memoryread($lsalvagekitptr + 12, "ptr") = 0 Then
						salvagekit()
						$lsalvagekitid = findsalvagekit()
						$lsalvagekitptr = getitemptr($lsalvagekitid)
					EndIf
					$loldvalue = memoryread($lsalvagekitptr + 36, "short")
					startsalvage($aitem)
					Sleep(500 + getping())
					salvagematerials()
					Local $ldeadlock = TimerInit()
					Do
						Sleep(200)
					Until memoryread($lsalvagekitptr + 36, "short") <> $loldvalue OR TimerDiff($ldeadlock) > 5000
				EndIf
			EndIf
		Next
	Next
	salvagekit()
EndFunc
Code:
Func getcansalvage($aitemptr)
	If memoryread($aitemptr + 24, "ptr") <> 0 Then Return False
	Local $litemtype = memoryread($aitemptr + 32, "byte")
	If $litemtype <> 5 Then Return False
	Local $lmodelid = memoryread($aitemptr + 44, "long")
	Switch $lmodelid
		Case $modeid_breambellong, $modeid_breambelrecurve, $modeid_breambelshort, $modeid_breambelflat, $modeid_breambelhorn
			Return True
	EndSwitch
	Return False
EndFunc
Seems so it crashes in the getcansalvage Func special in the Switch mode.

Can someone help me with it?
10/14/2023 19:17 Olddadz#402
hey guys did anyone fix the jade bot id greatly appreciate it not working for me.
10/14/2023 20:20 AlienMan9696#403
Neither are written by me, just added the drop down character selection option, I tried to edit the GUI for mantids to get count of monster eyes, am completely new to trying to edit or do them myself but have been lurking for awhile so trying to make some sort of contribution. The dervish feather farm is nice but this Rt one has been the most efficient for me. Good day.

Celestial Farm build : OgcTYnL/ZiHRn5AKu8uU4A3B6AA

Rt Feather build : OACjAqiK5OQzH318bWOPbNTnJA
10/15/2023 02:09 Srehor#404
Hey,
any campaign completing working bot ?
10/15/2023 05:49 AlienMan9696#405
Quote:
Originally Posted by Srehor View Post
Hey,
any campaign completing working bot ?
No, there isn't, not public at least, the last one was walked away from due to leechers/ people passing the bot around for free without permission from my understanding.