[2022/2023] Guild Wars working bots

03/01/2024 11:00 Mrjambix#601
Quote:
Originally Posted by TacticalWarfare View Post
Thanks for the reply, but I got this error:

''Waiting, we don't seem to LoggedIn''
Try: [Only registered and activated users can see links. Click Here To Register...]
I’ve never touched that script sadly, I’m not one you would see in pre-searing
03/02/2024 02:31 borotroth#602
Quote:
Originally Posted by TacticalWarfare View Post
Thanks for the reply, but I got this error:

''Waiting, we don't seem to LoggedIn''
So this could be crazy and unrelated, and I haven't tested it because I don't want it to stop working for me again.. but for me it worked at first, then I set graphics to low and I got that error. Restarted, redownloaded the bot, even remade the character.. nothing worked.
Until I set graphics to highest, then it started working flawlessly
03/02/2024 13:00 jcbobo#603
Quote:
Originally Posted by Mandilus33 View Post
Hello there. I have almost no issue with it crashing and I have several friends that run it and have almost no issues with it running 24/7 for the last week or so. I also have it pickup and salvage all weapons and shields because even though it gets wood and cloth, it will sell those and make some money while running instead of just getting materials.

I have, however, attached a more up to date version that allows you to turn off sin tomes and pick up the blue scrolls if you want to make some more money. It also has a little different pathing and skill use while gathering the raptors. I hate to hear that it crashes for you, but in my tests of thousands of runs I have no issues with it crashing.
I have soime issue with this version (previous works perfeclty), is not killing any mobs in 10 runs.
03/03/2024 06:24 Ubrizsya#604
Quote:
Originally Posted by Razerb View Post
Try this one ;)
Quote:
Originally Posted by Scythe X View Post
Both of these work for me.
I will give these omnifarmer's a try.
03/03/2024 15:37 Hajsu#605
Quote:
Originally Posted by AlienMan9696 View Post
Seen some recent talk of a mantids bot, I updated this one awhile back and it runs great. :) Is probably my favorite mantid bot that's ever been written! Credit to the original author, I just updated the GWA2 and deleted duplicate functions. :) It tells you how many of each celestial item it picks up, counts eye drops as well as amber. All around awesome bot! As of write now, it's canpickup func has some stuff written out. I have it only picking up shields/staves and scepters :)

Build is in the file but here also :)

OgcUYxr2lPPInDoOD3JcgOhuJIA
does it only pick up the shields or what? it didnt' pick up cele bow. it's not even tries to keep up another gold items. it picks up gold coins, tomes, picked up 1 cele shield and nothing more.. what's the point of that. how to edit this to pick up all golds? canpickup has TRUE value for all cele weaps and doesn't pick up them all, why?
03/03/2024 16:10 AlienMan9696#606
Quote:
Originally Posted by Hajsu View Post
does it only pick up the shields or what? it didnt' pick up cele bow. it's not even tries to keep up another gold items. it picks up gold coins, tomes, picked up 1 cele shield and nothing more.. what's the point of that. how to edit this to pick up all golds? canpickup has TRUE value for all cele weaps and doesn't pick up them all, why?
They are wrote out, I don't care for bows, I said that in my original comment.. you can easily go in and press backspace a few times and it will pick up all.. Not to be to rude but I literally said I have it wrote out to only pick shield, staves and scepters so just read next time please.. good day
03/03/2024 16:17 Hajsu#607
Quote:
Originally Posted by AlienMan9696 View Post
They are wrote out, I don't care for bows, I said that in my original comment.. you can easily go in and press backspace a few times and it will pick up all.. Not to be to rude but I literally said I have it wrote out to only pick shield, staves and scepters so just read next time please.. good day
yes I can read, but I think your writings should be clear.

" If $lRarity == $RARITY_GOLD Then Return True ; if you want to pick up all golds items (unselect items below) "

all cele have TRUE value and on the other hand as u wrote and as i can see bot picks up only shield so in logic case it doesn't seems logic.

Quote:
Originally Posted by AlienMan9696 View Post
you can easily go in and press backspace a few times and it will pick up all..
idk which lines u mean to be deleted but lines which I'm deleting don't give me a change. it's still the same. that's what i'm talking about. i'm not a coder, so solutions could be clear written.
03/03/2024 16:25 ARJ#608
I have a cooding question (:

So this function makes me enter a mission.
Quote:
Func GoOut()
RndSleep(250)
CurrentAction("Enter Mission")

EnterChallenge()

WaitMapLoading()
Do
RndSleep(100)
Until GetMapLoading() == $INSTANCETYPE_EXPLORABLE Or TimerDiff($TimerLoad) > 20000
RndSleep(GetPing()+2000)
EndFunc
But if my team is not full or "has a character form another campaign" it askes me if i want to still enter the missions..

Now how do I make the bot press "yes" xD

Thx
03/03/2024 18:02 AlienMan9696#609
Quote:
Originally Posted by Hajsu View Post
yes I can read, but I think your writings should be clear.

" If $lRarity == $RARITY_GOLD Then Return True ; if you want to pick up all golds items (unselect items below) "

all cele have TRUE value and on the other hand as u wrote and as i can see bot picks up only shield so in logic case it doesn't seems logic.



idk which lines u mean to be deleted but lines which I'm deleting don't give me a change. it's still the same. that's what i'm talking about. i'm not a coder, so solutions could be clear written.
If you go into the code.. you can see i did this in front of the lines for bows/other melee weaps... ";~" Commenting out the code for the other items aside from shield/scepter/staves.. As when i was using I had zero desire for those other items..



Func CanPickUp($aItem)
Local $Quantity
Local $lModelID = DllStructGetData(($aItem), 'ModelID')
Local $lRarity = GetRarity($aItem)
If $lModelID == 2511 And GetGoldCharacter() < 99000 Then Return True ; gold coins (only pick if character has less than 99k in inventory)
If $lModelID > 21785 And $lModelID < 21806 Then Return True ; Elite/Normal Tomes
;~ If $lRarity == $RARITY_GOLD Then Return True ; if you want to pick up all golds items (unselect items below)

Switch $lModelID
Case $CeleStr, $CeleTact ; Celestial shield strenght and tactic
$Drops += DllStructGetData($aItem, 'Quantity')
GUICtrlSetData($DropsCount,$Drops)
Return True
;~ Case $CeleSword ; Celestial Sword
;~ $Drops2 += DllStructGetData($aItem, 'Quantity')
;~ GUICtrlSetData($DropsCount2,$Drops2)
;~ Return True
Case $CeleStaff ; Celestial Staff
$Drops3 += DllStructGetData($aItem, 'Quantity')
GUICtrlSetData($DropsCount3,$Drops3)
Return True
;~ Case $CeleLbow ; Celestial long bow
;~ $Drops4 += DllStructGetData($aItem, 'Quantity')
;~ GUICtrlSetData($DropsCount4,$Drops4)
;~ Return True
;~ Case $CeleDagger ; Celestial Dagger
;~ $Drops5 += DllStructGetData($aItem, 'Quantity')
;~ GUICtrlSetData($DropsCount5,$Drops5)
;~ Return True
Case $CeleScepter ; Celestial Scepter
$Drops6 += DllStructGetData($aItem, 'Quantity')
GUICtrlSetData($DropsCount6,$Drops6)
Return True
;~ Case $CeleAxe ; Celestial Axe
;~ $Drops7 += DllStructGetData($aItem, 'Quantity')
;~ GUICtrlSetData($DropsCount7,$Drops7)
;~ Return True
;~ Case $CeleHammer ; Celestial Hammer
;~ $Drops8 += DllStructGetData($aItem, 'Quantity')
;~ GUICtrlSetData($DropsCount8,$Drops8)
;~ Return True
case $ITEM_ID_MEYES ; Monstruous eyes
$Drops9 += DllStructGetData($aItem, 'Quantity')
GUICtrlSetData($DropsCount9,$Drops9)
Return True
Case $ITEM_ID_RUBY ; Ruby
$Drops10 += DllStructGetData($aItem, 'Quantity')
GUICtrlSetData($DropsCount10,$Drops10)
Return True
Case $ITEM_ID_AMBER ; Amber
$Drops11 += DllStructGetData($aItem, 'Quantity')
GUICtrlSetData($DropsCount11,$Drops11)
Return True
Case $ITEM_ID_LOCKPICKS ; Lockpicks
Return True
Case Else
Return False
EndSwitch


Yes.. It says remain true under them but I have completely commented them out with my ;~ squigly lines.. Something you see commonly done instead of completely deleting lines of the code..

Quote:
Originally Posted by ARJ View Post
I have a cooding question (:

So this function makes me enter a mission.


But if my team is not full or "has a character form another campaign" it askes me if i want to still enter the missions..

Now how do I make the bot press "yes" xD

Thx
I think in some GWA2 there is another manner of doing it but a friend taught me this and this has worked for me in the passed when I've had that issue, if it doesn't help let me know and maybe can steer you in a different direction.

EnterChallenge()
Sleep(500+GetPing())
ControlSend(GetWindowHandle(), "", "", "{Enter}")
Sleep(500+GetPing())
ControlSend(GetWindowHandle(), "", "", "{Enter}")
03/03/2024 18:57 Ubrizsya#610
Quote:
Originally Posted by sky51100 View Post
Hey,
this bot work good, don't forget to have cestus in your first slot weapon. Enjoy
Thank you, Sensai!
03/03/2024 18:58 ARJ#611
Quote:
Originally Posted by AlienMan9696 View Post
I think in some GWA2 there is another manner of doing it but a friend taught me this and this has worked for me in the passed when I've had that issue, if it doesn't help let me know and maybe can steer you in a different direction.

EnterChallenge()
Sleep(500+GetPing())
ControlSend(GetWindowHandle(), "", "", "{Enter}")
Sleep(500+GetPing())
ControlSend(GetWindowHandle(), "", "", "{Enter}")
It is working thx alot (:
03/04/2024 21:32 Ratedsdks#612
Is there a working Pre searing? for Ldoa 11-20? This one just teleports in and outta the Fair outpost and kills maybe 2 / 3 mobs? is this as intended, Im also looking for a working Shards of Orr, Fissure of Woe script ;D or even UW (paying cash for a good script)
03/04/2024 23:10 Hajsu#613
Quote:
Originally Posted by Ratedsdks View Post
Is there a working Pre searing? for Ldoa 11-20? This one just teleports in and outta the Fair outpost and kills maybe 2 / 3 mobs? is this as intended, Im also looking for a working Shards of Orr, Fissure of Woe script ;D or even UW (paying cash for a good script)
i did 1 ldoa with bot on the 1st page from 2 to 20lv 2 days ago.

about 2-10 - imp stone doesn't work for me - worked only when i charmed a pet and added it to the party ; bot doesn't care about ur surv title ; stupid coords when passing charrs group - it could lure only and fall back, but it's not ; says the quest is not in log (when it is) and still running to rurik to get that ; bot backs to ascalon when it counts foes in nearby = /< 1 (it makes sense only if identification of quest log would be proper but it's not). in summary ldoa 2-10 is possible but much waste of time for running to rurik when it's not needed and stupid coords, so if u don't control the field u can bye/bye for survivor.

about 11-20 and ur question - yes, it's intended. that's how ldoa 11-20 works. u need ''farmer hamnet'' quest from langmar and bot is clearing only 2 mobs outside of foibles. with imp it's sth like ~50s for a run. and survivor care is working like a charm in this case.

P.S. it's always good to collect quest rewards (all pre-asca quests excluding farmer hamnet (to carry on bot leveling)) on lv 16 cuz 16>>17 is the longest path of exp on this farm.

about FoW (ToC R/A farm ; with scrollfix and option for picking golds):
[Only registered and activated users can see links. Click Here To Register...] used that yesterday. at afternoon that was all good, after the night i saw bot was stuck on random npc. u can see many R/A bots in toa and half of them are stucked on the same npcs. bot needs rewriting/edit or deleting lines which prior is for random movement and changing districts if balth avatar is not presented - huuuuuge waste of time and make more suspense than strict running to statue for action.
03/05/2024 18:47 Dupljakus#614
Someone got good. Follower/leader for 7 acc ?
03/05/2024 23:04 Waka.Waka#615
Quote:
Originally Posted by Dupljakus View Post
Someone got good. Follower/leader for 7 acc ?
[Only registered and activated users can see links. Click Here To Register...]