GW1 Bots working in July 2017

09/19/2017 00:16 Ttrader#331
So couple observations concerning the dust bot so far since I just started looking at it.

#1 This bot will not work with any sort of War in Kryta mission/bounties/quests active. If you see any Peacekeepers in the zone then you will have to figure out why WiK is active.

In my case the character I was going to use had no quests or missions active but had finished Prophecies, Factions, Nightfall, and EoTN and peacekeepers were still in the zone so I guessing I will have to start War in Kryta and finish it before I can use that character with this bot. Another Character I have that has finished everything and no peacekeepers showed so I'm using him to test the bot.

#2 The bot is definitely not working right. Seems like there is a too long a delay after each call to use a skill which seems to be the main culprit as to why it's breaking. Hopefully won't be too hard to fix and I am working on it!
09/19/2017 00:30 DerMoench14#332
Quote:
Originally Posted by calypso974fire View Post
Hello hello guys !

It took me a while because of my poor coding skills but i fixed and improved the Fiber Whirling bot, so please be indulgent ;)

Feel free to test it and report any bugs or stuff so i can fix it.
I will add several function to store echoval shields in store and to salvage all Bramble bows (so far, i only have the codes of Bramble Longbow, Bramble Hornbow and Bramble Shortbow).

As it is, the bot does not sell the items in the 4th bag (because i like to keep items in here and i dont want the bot to sell them). If you need it to, open the bot and uncomment the line ";Sell(4)" in the bellow function:

In closing, i'd like to thank Ttrader because this bot is based on it's feather farming bot.

Fiber Whirling

What you need:
- A ranger or an assassin with the Saint Anjeka's Shrine and Seitung Harbor;
- The quest "A New Escort" for the Dragon Mosses to spawn;
- A set +5 energy + 20% ench / arm + 10 vs Lightning (a staff +20 energy +20 % ench can do the job for a ranger)

Build:
- Ranger: OgcTcXs9Z64gHRn5A654uE3R4AA
- Assassin: OwJSg5PTHH8I6MHQPH3l4OCH

Start:
- use the RA bot with a ranger
- use the AR bot with an assassin
And still the outdated shit ... DON'T USE IT!
09/19/2017 02:37 Ttrader#333
Quote:
Originally Posted by DerMoench14 View Post
And still the outdated shit ... DON'T USE IT!
@[Only registered and activated users can see links. Click Here To Register...]

And what do you recommend? You come on here and criticize but what is your solution??? :confused:

Would love to hear about other options.
09/19/2017 02:48 Ttrader#334
Good news I was able to fix the dust bot!

It appears the GWA2 file had some discrepancies and wasn't reporting the recharge skill statuses correctly so rather than dig into all that I used a GWA2 file from one of the other bots and it fixed the major problems.

It never picked up gold so fixed that as well. Added grog since that is going on atm.

It does still die occasionally if it aggros too many or randomly gets pinned early by the necrid horseman group. Also has issues around the spined aloes and boss and is set to run through them but it still gets caught up in all that every few runs.

Seems like the route could use a little tweaking for fix the issues above but I left it as is. Maybe someone else can perfect it. :)
09/19/2017 03:27 DerMoench14#335
Quote:
Originally Posted by Ttrader View Post
@[Only registered and activated users can see links. Click Here To Register...]

And what do you recommend? You come on here and criticize but what is your solution??? :confused:

Would love to hear about other options.
Are you kidding me ?

Quote:
[Only registered and activated users can see links. Click Here To Register...]
09/19/2017 05:50 Ttrader#336
Quote:
Originally Posted by DerMoench14 View Post
The GWA˛.au3 and the AddsOn.au3 are pretty outdated (Packet Header and Offsets), you shouldn't use it!
I thought you said not to use these files? Are there newer versions that we should be using?

Sorry, but I'm new to working in these files and just trying to learn so explanations would be helpful.

Thanks
09/19/2017 10:23 calypso974fire#337
@[Only registered and activated users can see links. Click Here To Register...]: I think he said to use the new files he provided it the "Updated" archive in his post.
@[Only registered and activated users can see links. Click Here To Register...]: I know i did not use the updated files, but as i'm new to coding/boting, i used an existing bot to develop mine.

Besides, i have add an issue with the new files and maybe you can help me.
I wanted to salvage the fibers from Bramble bows so i used the functions bellow:

Func StartSalvage($aItem)
Func SalvageMaterials()

And when the function SalvageMaterials() was called, it crashes GW.
So i went into another bot and i founded that the packet sent by the function was diffrent:

Update version: SendPacket(0x4, 0x74)
Older version: SendPacket(0x4, 0x73)

So i tested the olver version and i worked directly. After that, i looked into the Vaettir 2 bot that works great and i founded that the packet sent was also SendPacket(0x4, 0x74).

Can you help me understand why SendPacket(0x4, 0x74) crash GW in my bot and not in the Vaettir 2 bot ?

This might help me to fix my bot and add a salvage function into the derv Feather bot.
09/19/2017 18:53 DerMoench14#338
I can try to explain:

SendPacket(0x4, 0x74) is the correct Packet.
If you want to salvage Plant Fibers from Bramble Bows you should always do it with cheap Salvage Kit, not the Expert Salvage Kit.
If the Bow has the Rarity white or blue you ONLY need to call StartSalvage().
If the Bow has the Rarity purple or gold you need to call StartSalvage() followed by SalvageMaterials().
So you could do it this way (just an example):
09/19/2017 19:11 calypso974fire#339
Ok i this i got it.
The issue might be that i called both function regardless of the rarity of the item.
I'll try to fix it.

Besides i have another question: how can i disable rendering correctly ?
I added a checkbox on the GUI, i declared my constant to store the value (true/false) etc... I can disable it when ticking the box and enable it when unticking.

But when i disable it and load a map, it crashs and i don't know why. Is their a specific way to toogle the rendering ?
09/20/2017 00:46 DerMoench14#340
No clue ... show me the script and ill have a look on it.
09/20/2017 00:53 Di Lusso#341
What can I do in CoF Diessa to get the blessing?
09/20/2017 01:24 DerMoench14#342
Code:
	Local $Beacon = GetNearestNPCToCoords(-18250, -8595)
	GoToNPC($Beacon)
	Dialog(0x84)
	Sleep(GetPing())
09/20/2017 10:23 calypso974fire#343
i'm reworking the bot to make it compliante with the new versions of GWA˛ you sent.
I'll also clean the code and use all the standard functions i can instead of home made and then i'll send it again.

I also add a lot of functions like keeping gold echovald shield or taking blessing + donate factions etc...
09/20/2017 12:25 Miss_Lana#344
Came here to say I used to use the JQ and Vaettir bots a lot back in the day, but hadn't recently. I'd just like to thank Fox for his comprehensive list of bots that currently work, and what's more, for free, so I don't have to go trudging through many year's worth of posts to see what ones I used and what changes I made.

Thanks so much to all the contributors to these as well! Though we don't always say it, a lot of us really appreciate the work you put in to these.

I was farming Vaettir for about an hour when I remembered this great site. I'm currently running V2, and it's working a treat! Will most likely try out the JQ farm when I'm done :)
09/20/2017 21:57 calypso974fire#345
@[Only registered and activated users can see links. Click Here To Register...]: I solved my issue with the rendering.

I wanna add so more features (like sell rare materials to correct merchant and choose between donate faction for alliance or amber, etc...)