GW1 Bots working in July 2017

04/02/2018 07:26 TheGringott#1366
Quote:
Originally Posted by pontiac1979 View Post
The raptor bot?
Sorry, I was replying to fivel_976.

But yeah the raptor bot works aswell with the updated gwa2
04/02/2018 13:02 fielz#1367
Please can someone share gwaApi updates ?
04/02/2018 14:22 Sebbinx#1368
Quote:
Originally Posted by pontiac1979 View Post
The quoted post below was directed towards you. I just did what (s)he said, and it is working perfectly. There will be a few lines of code you have to delete. Hopefully you're willing to put in some work of your own?
Quote:
Originally Posted by zoidberg1337 View Post
just put the missing functions from the old gwa2 in the new gwa2
Thank you for the help, where do I get the new gwa2 from and which lines do I have to change?
Sorry I am noob.
Cheers
04/02/2018 16:14 AnonymMouse#1369
Hi guys, i'm not sure i understand you guys, is the new gwa2 fixing the mont quikai too ? :D
04/02/2018 18:46 zoidberg1337#1370
Quote:
Originally Posted by Sebbinx View Post
Thank you for the help, where do I get the new gwa2 from and which lines do I have to change?
Sorry I am noob.
Cheers
look at the 2nd thread under this one :rolleyes:

you will see if you want to start the script
04/02/2018 19:05 pontiac1979#1371
Quote:
Originally Posted by Sebbinx View Post
Thank you for the help, where do I get the new gwa2 from and which lines do I have to change?
Sorry I am noob.
Cheers
Download WinMerge if you haven't already. It lets you put two scripts side by side and highlights any differences. For the CoF bot, you want to compare the new GWA2 to the GWA2 in the CoF bot folder. From there, copy/paste any differences into the new GWA2. You don't want to change anything else. If there are any sections where the old GWA2 has code and the new one doesn't, copy it over. Once you do this, be sure to delete the old GWA2 in that folder and copy the new one to the folder. After you get finished with that, upon loading the bot it will show an error saying something like "duplicate function". Just open up the gwa2 file and delete the code it is talking about.
04/02/2018 20:10 TheGringott#1372
I've updated the Vaetire farm bot from Gigi. (Kdiff best merging tool :P)

It worked for me so far.

edit: there are still some bugs :)
04/02/2018 20:33 DerMoench14#1373
You forgot to update Line 3167 in the Bot.au3 ;)
04/02/2018 22:11 zoidberg1337#1374
new update again, so bots aren't working anymore
04/03/2018 00:19 fivel_976#1375
got the gwa2 file you posted and tried a few differnt kilroys bots the one i use to use just closes my game and the newer one crashes my game cant seem to get any of them to work what am i doing wrong here?
04/03/2018 02:01 TheGringott#1376
Updated Kilroy, Vaettir & Raptor Bots after game update of 2018/04/02.
Thanks to tjubutsi for updating the headers!

Attention: i didn't update the bot-specific headers (only gwa2) so there might still be certain features causing bugs or game crashes.

Does anyone have a workin JQ bot and a Feather farm bot for Assa?
04/03/2018 07:20 fivel_976#1377
wow that kilroys works many thanks to you for posting it and to tjubutsi for the hard work. been so long could anyone tell me how to set it up for my second account
04/03/2018 09:42 Retlaw123#1378
i found this at your vaettir bot:
BKAV: -> virustotal -> JS.eIframeInjectAdswareNMe.6475 !!!

@[Only registered and activated users can see links. Click Here To Register...]
04/03/2018 10:12 TheGringott#1379
Quote:
Originally Posted by Retlaw123 View Post
i found this at your vaettir bot:
BKAV: -> virustotal -> JS.eIframeInjectAdswareNMe.6475 !!!

@[Only registered and activated users can see links. Click Here To Register...]
Learn some coding then u can actually understand what the bot does
04/03/2018 12:39 rheek#1380
Quote:
Originally Posted by pontiac1979 View Post
Download WinMerge if you haven't already. It lets you put two scripts side by side and highlights any differences. For the CoF bot, you want to compare the new GWA2 to the GWA2 in the CoF bot folder. From there, copy/paste any differences into the new GWA2. You don't want to change anything else. If there are any sections where the old GWA2 has code and the new one doesn't, copy it over. Once you do this, be sure to delete the old GWA2 in that folder and copy the new one to the folder. After you get finished with that, upon loading the bot it will show an error saying something like "duplicate function". Just open up the gwa2 file and delete the code it is talking about.
This is not the best way to fix the headers. I repeatedly suggested you to update the headers in your old gwa2 file. This will take ~10 minutes, even without tools like winmerge.

The workflow you suggested is way more complicated, it will take way longer and will introduce copy and paste errors very easily. This is because you will have to look at every function, evaluate what its doing, what you have to do and copy/replace many lines of codes.

Some modified gwa2 versions do a ton of stuff differently. This will make it very hard to catch every change. Sometimes a merge introduces errors, if parts of the code changed in both files differently and you do not understand the code.

Also just deleting one of the functions without even looking at them, will easily introcude errors as well.

In the approach I suggested you, you will only have to seach for occurances of SendPacket in both gwa2 files, and copy&paste the second parameter of that function from the new file into the same function in the second file.

In my long time of coding I've applied both workflows to different scenarios. The one I suggested worked out better in the end for me.