Donwload the Bot Developer Helper by DerMoench([Only registered and activated users can see links. Click Here To Register...]), you can use it to find the SKillIDs and other usefull stuff like Coordinates, ModelIDs etcQuote:
Hi everyone,
I am new to the forum, but have lurked in the past :p I was wondering if I could get some advice, I want to edit the Vaettir bot to work with E/Me - I'm comfortable with editing the au3 script file to get the skill sequencing correct and so on but I'm not sure how I would go about getting the Skill IDs to use in the script to monitor cooldown etc for recasting and stuff.
Anyone can point me to a resource or a page that lists the skill IDs of skills? Or if anyone could help me in editing the bot (I won't upload the bot here as I'm 100% no one here will download it nor should considering I'm a new member)
I got the bot off the GW Working Bots 2019 forum and its the Ident_Sell_Storgoldis one.
Thanks in advance!
Awesome! Thank you!Quote:
Donwload the Bot Developer Helper by DerMoench([Only registered and activated users can see links. Click Here To Register...]), you can use it to find the SKillIDs and other usefull stuff like Coordinates, ModelIDs etc
Upload the source code (the .au3 file) here, so everyone who wants to use it can check the code for himselfQuote:
Awesome! Thank you!
I'll give it a shot and maybe once I've got it sorted I'll upload my edited script for anyone else to use.
If I do finish it and upload it is there anyone I can send it to to ask them to confirm it doesn't have any nasties in it?
Okay, I'll do that. Gonna take me a while to figure out all the changes that need to be made and make sure it actually works for E/Me.Quote:
Upload the source code (the .au3 file) here, so everyone who wants to use it can check the code for himself
You call the function with -700 as range, so the counter is never updated because $lDistance > $aRange is always trueQuote:
hey everyone,
im struggling with a function that tells me how many foes are in the range of my character im using this function to figure it out
currently im just trying to get a bot to tell me how many foes are in range but it doesnt work im using this setup :
the only return i get is 0 where am i going wrong does the original function stillwork?
I was looking into a whirling farmer to farm destroyer cores in glints challenge, but since it uses a speedboost the destroyers drop aggro even in hard mode. the solution would be either to move backwards or strafe which is what youre supposed to do as a real player in these scenarios or the other thing you might try is do partial movetos with regular sleep(afewseconds). the destroyers come from two sides and since they also have diffrent attackranges they need to be pulled quite speficially and having a good movebackwords would help with that.Quote:
what are you trying to do and you need to move backwards, why exactly you need something like that
Depending on your farming code, you can setup a move backwards function pretty easy yourself....a couple of ways...Quote:
before i attempt this myself i wanted to ask here whether someone has a working movebackwards function. while movebackwards exists in gwa2 and it should work(havent tested it yet) you cant specify where to move directly in the function. im aware that a function like that wont have pathing like the moveto function as it isnt something that is in the game like that. id assume that after a moveto into the exact opposite direction you could than do a do movebackwards until playergetcords(x/y) but havent tried that if anyone has something like that and is willing to share thatd be great
while i havent tested this myself there are abandon and pickup features in gwa2 so it should just work to do something like:Quote:
Hey folks, is there a script to accept and abandon mobstopper quest?
For $i = 1 To 4 $bag = Getbag($i) For $j = 1 To DllStructGetData($bag, 'Slots') $item = GetItemBySlot($i, $j) If CanSalvage($item) Then StartSalvage($item) RndSleep(250) SalvageMaterials() RndSleep(250) EndIf Next Next