Register for your free account! | Forgot your password?

You last visited: Today at 08:39

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



GW1 Bots working in July 2017

Discussion on GW1 Bots working in July 2017 within the GW Exploits, Hacks, Bots, Tools & Macros forum part of the Guild Wars category.

Reply
 
Old 01/18/2018, 13:41   #1021
 
elite*gold: 0
Join Date: May 2014
Posts: 269
Received Thanks: 328
Quote:
Originally Posted by ytix View Post
Ahh now I understand why "$aHeader + 1" is a quick dirty fix! (I took a closer look with a file comparing tool...)

Alright, but could you also explain these fixes?

And is it actually important to "avoid getagentbyid" in Func Event?


Other than those, in strecky's library there are also functions GetPartyDanger, GetAgentDanger and GetPseudoDistance - worth mentioning?
I can try to explain

Code:
_('ScanUseHeroSkillFunction:')
	AddPattern('8D0C765F5E8B')
The Pattern you see here is a BYTE-Pattern. Somewhere in your RAM there is a "Region" that is reserved for GW. Within that Region theres another Region where you find the Byte-String above.
Code:
8D0C765F5E8B
means
Code:
8D 0C 76 5F 5E 8B
So somewhere in our GW-Memory we will find these 6 Bytes in exactly that order.
The Function "Hex(GetScannedAddress('ScanUseHeroSkillFuncti on', -0xA1), 8)" will do this for us ... it search the Memory for the Pattern and returns the Adress in our Memory where Byte-String is located.
The -0xA1 at the end means the the Function we are searching for (UseHeroSkill) isn't exactly located at the found address as it is -0xA1 Bytes before.
So back in 2015 when GW got updated the address of the UseHeroSkill-Func got another static address and the whole pattern part needed an update.
BTW: The Address is used in the ASM-Part of GWA2 which directly accesses the CPU, and yeah a wrong address lets GW crash/whatever ^^

$lOffset[3] = 0x6F0 is correct (GetSkillbar)

$lOffset[3] = 0xAC is correct (GetAttributeByID)

Within the Event-Func:
Yeah, just delete the GetAgentByID() in every Line ^^

The other Func ... well its the nature of an API that it will grow up by time.
Should't be a Problem, just be careful if a new Func contains Stuff like SendPacket and/or $Offsets as they need to be up-to-date, too!

Cheers
DerMoench14 is offline  
Thanks
2 Users
Old 01/18/2018, 16:52   #1022
 
strecky's Avatar
 
elite*gold: 100
Join Date: Aug 2007
Posts: 224
Received Thanks: 362
hy danke und die gwa2 wahr von mir nur etwas bearbeitet da nur einige sehr alte bots damit gelaufen sind
strecky is offline  
Old 01/18/2018, 18:19   #1023
 
rusco95's Avatar
 
elite*gold: 0
Join Date: Mar 2013
Posts: 52
Received Thanks: 44
anyone have a material tarder bot?
rusco95 is offline  
Old 01/18/2018, 22:15   #1024
 
elite*gold: 0
Join Date: Jan 2018
Posts: 3
Received Thanks: 0
Hi guys,

Pretty new to all this but I had some questions,

I am trying the Vaettir bot (VaettirComboRunv3.1.1) but I think I probably have the wrong build? It doesnt really kill anything. Could someone point me to a correct build? I am Rit with SoS.

Second question is more general, are there bots who really take on Vanquishing of an entire area? If so, could someone point me to them?

And last question, what is the best bot for Survivor title? I tried Killroy for some time and it got me pretty far but I still died twice so I had to start all over.

Thanks for all the hard work and the help!
eunoiaa is offline  
Old 01/18/2018, 23:13   #1025
 
ytix's Avatar
 
elite*gold: 0
Join Date: Dec 2017
Posts: 38
Received Thanks: 5
Quote:
Originally Posted by eunoiaa View Post
I am trying the Vaettir bot (VaettirComboRunv3.1.1) but I think I probably have the wrong build? It doesnt really kill anything. Could someone point me to a correct build? I am Rit with SoS.
It's A/Me only bot: OwVUI2h5lPP8Id2BkAiAvpLBTAA
ytix is offline  
Old 01/19/2018, 14:56   #1026
 
P@r@m3d!©'s Avatar
 
elite*gold: 0
Join Date: Dec 2013
Posts: 828
Received Thanks: 257
Hey first of all thank you for your awesome work on these bots!

I'm not super worked into the coding of bots but I've modified them to my likings a couple times already which brings me to my question.

I noticed that the bots I indended to use all have the Pickuploot and Ident functions for their actions but I couldn't find where they are defined. Am I correct that these are just the default GW functions to pickup and identify everything and that I have to write my own small functions if I want to filter some stuff out (like keeping golds unidentified and not pick up all random dyes) or did I miss something else?
P@r@m3d!© is offline  
Old 01/19/2018, 21:23   #1027
 
ytix's Avatar
 
elite*gold: 0
Join Date: Dec 2017
Posts: 38
Received Thanks: 5
Quote:
Originally Posted by P@r@m3d!© View Post
Hey first of all thank you for your awesome work on these bots!

I'm not super worked into the coding of bots but I've modified them to my likings a couple times already which brings me to my question.

I noticed that the bots I indended to use all have the Pickuploot and Ident functions for their actions but I couldn't find where they are defined. Am I correct that these are just the default GW functions to pickup and identify everything and that I have to write my own small functions if I want to filter some stuff out (like keeping golds unidentified and not pick up all random dyes) or did I miss something else?
The fragmentation of core library builds between bots makes it not that simple.
Don't be lazy, get a proper editor, like Notepad++, search for the functions in bot libraries, check out what the functions actually do and then think what you must additionally write in bot script to get desired result.
AutoIt language is simple, slightly annoying, but it doesn't chop your arms off, so invest time in it, and you'll see how easy it all actually is. Invest time and you'll be wiser.
ytix is offline  
Old 01/19/2018, 21:47   #1028
 
elite*gold: 44
Join Date: Sep 2008
Posts: 1,515
Received Thanks: 687
Quote:
Originally Posted by P@r@m3d!© View Post
Hey first of all thank you for your awesome work on these bots!

I'm not super worked into the coding of bots but I've modified them to my likings a couple times already which brings me to my question.

I noticed that the bots I indended to use all have the Pickuploot and Ident functions for their actions but I couldn't find where they are defined. Am I correct that these are just the default GW functions to pickup and identify everything and that I have to write my own small functions if I want to filter some stuff out (like keeping golds unidentified and not pick up all random dyes) or did I miss something else?
So it depends on what script you running... Example if you are running the Kilroy script on this post, you can easily edit the script itself and search for Ident and CanPickUp fuctions to prevent it from ID, and to pick up certain modelId...

Now if you turn into the Vaettir script that is posted on here...it's a bit different. First you'd need to go into the gwApi and edit global to false on the PickUpAll,Tomes,ect (everything that you do not want it to pick up to false)...then you'd have to go into the library under items and make sure its only modelId set to return true are the ones you looking for...Similar for the ID, it should go under the Inventory library and you edit it from there... like i said it depends on what type of script you are trying to run.

Also don't listen to anyone telling you "don't be lazy do it yourself" and stuff...You are asking for help its not like you are asking for someone to do it for you.
Lion2205 is offline  
Thanks
1 User
Old 01/19/2018, 22:08   #1029
 
P@r@m3d!©'s Avatar
 
elite*gold: 0
Join Date: Dec 2013
Posts: 828
Received Thanks: 257
Quote:
Originally Posted by Lion2205 View Post
So it depends on what script you running... Example if you are running the Kilroy script on this post, you can easily edit the script itself and search for Ident and CanPickUp fuctions to prevent it from ID, and to pick up certain modelId...

Now if you turn into the Vaettir script that is posted on here...it's a bit different. First you'd need to go into the gwApi and edit global to false on the PickUpAll,Tomes,ect (everything that you do not want it to pick up to false)...then you'd have to go into the library under items and make sure its only modelId set to return true are the ones you looking for...Similar for the ID, it should go under the Inventory library and you edit it from there... like i said it depends on what type of script you are trying to run.

Also don't listen to anyone telling you "don't be lazy do it yourself" and stuff...You are asking for help its not like you are asking for someone to do it for you.
Thanks that helped a lot.
One of the bots was indeed the Vaettir bot. I haven't edited a bot yet which had these api functions so nicely split up in seperate files so I didn't know where to search the pickup function
P@r@m3d!© is offline  
Old 01/20/2018, 11:32   #1030
 
elite*gold: 0
Join Date: Jun 2017
Posts: 4
Received Thanks: 0
someone know the build for bot stygan with mesmer pls?
joke334 is offline  
Old 01/20/2018, 12:57   #1031
 
elite*gold: 0
Join Date: Jul 2017
Posts: 111
Received Thanks: 4
i want to run the speedbook bot but i have a mesmer mercanary what is the ID does somebody know that because i get eeror when i start it up says no ID
ICON007 is offline  
Old 01/20/2018, 15:16   #1032
 
elite*gold: 0
Join Date: May 2010
Posts: 132
Received Thanks: 111
Quote:
Originally Posted by joke334 View Post
someone know the build for bot stygan with mesmer pls?
The build and stuff has been posted on this topic. Dig in the first 10 pages of the topic
calypso974fire is offline  
Old 01/20/2018, 16:49   #1033
 
elite*gold: 0
Join Date: Jun 2017
Posts: 4
Received Thanks: 0
Quote:
Originally Posted by calypso974fire View Post
The build and stuff has been posted on this topic. Dig in the first 10 pages of the topic
Thanks bro
joke334 is offline  
Old 01/21/2018, 00:23   #1034
 
elite*gold: 0
Join Date: Jan 2018
Posts: 26
Received Thanks: 2
Quote:
Originally Posted by Pwnchap View Post
Does anybody have a Lightbringer & Sunspear bot? The EOTN Vq isn't working particularly well...

I'll upload this LB SS Bot so somebody could maybe kindly take a look at it for everybody..
Hey I tried running the LB SS Bot you had attached, dont know if anyone else has responded on it but it doesn't grab the bounty as you leave the outpost.
LandonCarter7 is offline  
Old 01/21/2018, 01:57   #1035
 
elite*gold: 0
Join Date: Sep 2017
Posts: 30
Received Thanks: 0
Quote:
Originally Posted by DerMoench14 View Post
Well "duplicate functions" ... the error message tells you what went wrong.
You have the same named Function in multiple (included) Files which is not allowed.
Just delete/rename them in your Bot.au3.
thank you for your answer, I guess i just don't know enough about the code because I can't find that exact function in the bot code, if only the error told me where in the bot code this duplicate code is instead of in the addons.
lyscir is offline  
Reply

Tags
bots, free, gw1, working


Similar Threads Similar Threads
[Selling] GW1 50/50 HoM + GWAMM + unlinked ~ available until 20.02.2017 ~
12/28/2016 - Guild Wars Trading - 48 Replies
I'm selling amazing account! Because no1 is buying and I'm trying to sell it for long time, account will be withdrawn from the market 20.02.2017. I will stop selling it after that time. withdrawn from the market http://s32.postimg.org/vt0fmhhsl/Ho_M.jpg http://s32.postimg.org/3za15anh1/main.jpg Important Notes - serious buyers only
► Free Avatars Event | Facebook Event | Momo Designs [ July 2 – July 4 ]
07/02/2016 - Freebies - 1 Replies
http://www.elitepvpers.com/forum/customavatars/ava tar6844591_19.gif http://i.epvpimg.com/sxVGh.png Order you Free Avatar Design now . From 2/7/2016 to 4/7/2016 ● like & share our official page on facebook ● post your design details on the wall of event ● your design will be ready in few min Facebook Page : Here Event : Here
[Selling] WTS: GW2+GW1 HOM 39/50 GW1 R12
07/09/2015 - Guild Wars 2 Trading - 1 Replies
Guild wars acc r12 Im going to sell my Ha r12 Rank guild wars account. Its linked to an GW2 (I will sell both) Account. I already changed Email-Adress so you will get all the informations u need and you just need to change the E-mail password. (Serial, Email Account Password, Email, GW account password). Account got fac proph nightfall and eotn + bonus mission pack . HOM 39/40 I prefer middelman for the deal! Only will sell to trusted user!



All times are GMT +1. The time now is 08:39.


Powered by vBulletin®
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2025 elitepvpers All Rights Reserved.