[2021] Guild Wars Working Bots

08/29/2022 19:50 Blind995#421
all ur bot does is walk to those co-ords and then thats it

I suggest u look for a function like AggroMoveToEx somewhere in your file or copy it from another bot.
That will then make the bot fight

AggroMoveToEx(x, y)
08/29/2022 21:20 kevkiller320#422
hi all

does anyone have an arenanet crash error sometimes during the chest run only?
With the pongmei bot
08/31/2022 05:41 criticalism#423
Quote:
Originally Posted by kevkiller320 View Post
hi all

does anyone have an arenanet crash error sometimes during the chest run only?
With the pongmei bot
Yup, 15-20 mins fix and you're ready to go.
08/31/2022 23:59 TacticalWarfare#424
Quote:
Originally Posted by Ink Ognito View Post
anyone got a LDoA-Bot ready?
this
09/01/2022 16:05 ForgottenRelic#425
Interesting question....


I have the function CheckForChest and just wondering, does it only look for Locked chest or does it look for any chest that can be opened? Writing a new script and had function but didnt locate chest within distance to me and just rezoned.


Thanks :)
09/02/2022 11:02 FriendlyFarmer#426
Quote:
Originally Posted by ForgottenRelic View Post
Interesting question....


I have the function CheckForChest and just wondering, does it only look for Locked chest or does it look for any chest that can be opened? Writing a new script and had function but didnt locate chest within distance to me and just rezoned.


Thanks :)
You look for agents of type 0x200 (which are chests, signposts etc), and then match the extratype of the agent to the extratype of the chests you want. Locked chest has extratype 8141 if Im correct. Example for locked chest:

Code:
Local $lAgentArray = GetAgentArray(0x200)
For $i = 1 To $lAgentArray[0]
     $lAgent = $lAgentArray[i]
     If DllStructGetData($lAgent, "ExtraType") == 8141 Then
            .... code here
     EndIf
Next
09/02/2022 16:19 ForgottenRelic#427
Why thank you for this information!

I will look into finding the correct ExtraType for the chest that I want to open.
09/03/2022 17:14 Kai194#428
Hey everyone, is there any public Disable Render function? Would very much appreciate!
09/04/2022 13:13 Death_Fire#429
Has someone from you a working Zchest open Bot?
09/05/2022 09:13 natsilent#430
I made this a while ago

Be sure to have some merch stones in your inventory

you need to go to the zone before starting it
Code:
Func Main()
	$Chest = GetAgentByID(26)
	ChangeTarget($Chest)
	ActionInteract()
	Sleep(1500)
	PickUpLootAll()
	
	If CountSlots() < 3 Then 
		$item = GetItemByModelID(31154)
		If DllStructGetData($item, 'Bag') <> 0 Then
			UseItem($item)
			Sleep(100)
		EndIf
		Sleep(500)
		TargetNearestAlly()
		ActionInteract()
		Ident(1)
		Ident(2)
		Ident(3)
		Ident(4)
		TargetNearestAlly()
		ActionInteract()
		Sell2(1)
		TargetNearestAlly()
		ActionInteract()
		Sell2(2)
		TargetNearestAlly()
		ActionInteract()
		Sell2(3)
		TargetNearestAlly()
		ActionInteract()
		Sell2(4)

	EndIf

EndFunc	;=>Main
#endRegion Main
09/06/2022 10:42 AndaraX42#431
Quote:
Originally Posted by Death_Fire View Post
Has someone from you a working Zchest open Bot?
take title helper, works fine atm.
09/10/2022 12:27 Death_Fire#432
I tried and download the 3.0 but I cant start them?
09/14/2022 16:15 hellokok#433
any no render function working?
09/27/2022 02:10 OriginsEXE#434
anyone with working kilroy that does survivor?
09/27/2022 16:25 neymarkus#435
Hi all,

as i tried to lvl my nec in pre i found some OmniPre bots in this thread , but the bots always crashes, with some skill issues at the 11-20 function.

Can anyone help me out to fix it?

I'd like to thank you all for your great work in this thread and for sharing your knowledge it with us! :)