GW Working Bots 2020

02/22/2020 13:33 smiley232#46
Quote:
Originally Posted by oneshout View Post
Code:
			Switch DllStructGetData($lItem, 'ModelID')
				Case 2991
					If DllStructGetData($lItem, 'Value') / 8 < $lUses Then
						$lKit = DllStructGetData($lItem, 'ID')
						$lUses = DllStructGetData($lItem, 'Value') / 8
					EndIf
The ModelID of the normal kit should be 2992.
02/27/2020 06:55 hemavade#47
Edit: Figured it out
03/01/2020 09:51 LadyAstero#48
Kind people, please share the bot, vaettir, Thanks!!
03/01/2020 13:40 Restia Ashdoll#49
Quote:
Originally Posted by LadyAstero View Post
Kind people, please share the bot, vaettir, Thanks!!
I have updated the feather farmer and the war supply i will look in the vaettir maybe later but at least in front of the next event and will share it here
03/01/2020 18:00 LadyAstero#50
Thank you very much!!!
03/09/2020 11:41 RicoNo1#51
Anything thats working?
03/09/2020 23:00 sadusten#52
Quote:
Originally Posted by RicoNo1 View Post
Anything thats working?
Be more specific :)
03/11/2020 09:21 GwGuru#53
I've downloaded the New Feather bot but when it goes to xunlai chest it crashes the game. Can anyone clarify what is my issue. Thank you.
03/11/2020 10:14 oneshout#54
Quote:
Originally Posted by GwGuru View Post
I've downloaded the New Feather bot but when it goes to xunlai chest it crashes the game. Can anyone clarify what is my issue. Thank you.
This GWA2 is missing some update...

Replace :
Code:
Global Const $HEADER_CHEST_OPEN = 0x59
by

Code:
Global Const $HEADER_CHEST_OPEN = 0x5A
Best regard
03/11/2020 11:58 Zvend#55
Quote:
Originally Posted by oneshout View Post
This GWA2 is missing some update...

Replace :
Code:
Global Const $HEADER_CHEST_OPEN = 0x59
by

Code:
Global Const $HEADER_CHEST_OPEN = 0x5A
Best regard
Code:
Global Const $HEADER_CHEST_OPEN = 0x5A
this header is used for opening chest ins explorable regions.
Opening the Xunlai Chest can be done in a few different ways.

I will leave all other possibilities since GWA2 has only performAction()

1) you use performAction but maybe u use wrong flags or it isnt working in general in GWA2
2) you move to the chest and use the CtoS Packet INTERACT_LIVING

Code:
	DWORD const ACTION_INTERACT_LIVING = 0x40;    // Size = 0xC 

	void InteractNPC(DWORD AgentID, DWORD CallTarget) {
	    GW::CtoGS::SendPacket(0xC, HEADER::ACTION_INTERACT_LIVING, AgentID, CallTarget);
	}
03/11/2020 20:32 oneshout#56
Quote:
Originally Posted by Zvend View Post
Code:
Global Const $HEADER_CHEST_OPEN = 0x5A
this header is used for opening chest ins explorable regions.
Opening the Xunlai Chest can be done in a few different ways.
yep my bad but...in the same way, in this GWA2, the header for "INTERACT_LIVING" (GWCA) is "$HEADER_NPC_TALK" (GWA2) and he is bad tho.

on the GWA2 :
Code:
Global Const $HEADER_NPC_TALK = 0x3F
the good one :
Code:
Global Const $HEADER_NPC_TALK = 0x40
not sure, sometimes GWA2 is really weerd to understand ;)
03/12/2020 22:26 FozzyHacker#57
trying to run Vaettir advanced and vaettir sell and store. Game keeps crashing when trying to leave longeyes, and when trying to tele to longeyes I get "you may not enter that outpost". can anyone please help?
03/12/2020 22:45 oneshout#58
Quote:
Originally Posted by FozzyHacker View Post
trying to run Vaettir advanced and vaettir sell and store. Game keeps crashing when trying to leave longeyes, and when trying to tele to longeyes I get "you may not enter that outpost". can anyone please help?
Maybe you have miss something.... Since the December update, GWA2 need to be updated (headers + ASM functions).
You can start to Update headers on GWA2 API and all will be ok for most important things; you have all you need [Only registered and activated users can see links. Click Here To Register...] and [Only registered and activated users can see links. Click Here To Register...]
03/12/2020 23:49 FozzyHacker#59
Quote:
Originally Posted by oneshout View Post
Maybe you have miss something.... Since the December update, GWA2 need to be updated (headers + ASM functions).
You can start to Update headers on GWA2 API and all will be ok for most important things; you have all you need [Only registered and activated users can see links. Click Here To Register...] and [Only registered and activated users can see links. Click Here To Register...]
Thanks, managed to get it working with this advice :)
03/13/2020 17:07 baboonghost#60
Could someone please give a vaettir bot that works ? I tried modifying GWA2 as suggested above but i really have no clue what i'm doing :(