|
You last visited: Today at 06:57
Advertisement
[2021] Guild Wars Working Bots
Discussion on [2021] Guild Wars Working Bots within the GW Exploits, Hacks, Bots, Tools & Macros forum part of the Guild Wars category.
02/26/2022, 17:46
|
#211
|
elite*gold: 0
Join Date: Jan 2018
Posts: 2
Received Thanks: 0
|
Thanks for fast answer Didou  . it seems like i was not launching the right file in the .rar
I tried for one hour with no success whereas it is so easy to make it work !!
thank you so much all of you that are making this possible for a noob like me!
peace
|
|
|
02/26/2022, 21:44
|
#212
|
elite*gold: 0
Join Date: Mar 2017
Posts: 2
Received Thanks: 0
|
Secondary Profession
Hi guys,
Is there a updated one for the seconday profession changer?
|
|
|
03/01/2022, 13:31
|
#213
|
elite*gold: 0
Join Date: Jan 2021
Posts: 12
Received Thanks: 3
|
Someone have fix pongmai bot to Id and sell ?
I cant find the solution,
the fuction is very precise,
i check the inventory function of Vaettir farm but i cant integrate it...
i would sell all the gold and purple except :
Quote:
Switch DllStructGetData($aItem, 'ModelID')
Case 944, 945, 950, 951 ;Echovald Shield, Gothic Defender
If GetItemReq($aItem) <= 10 Then Return False ;debug setting as i cant figure out how many mods an OS shield has -.-
Return $pick_up_golds
Case 794, 866, 775, 776, 789, 858, 866 ;oni blade and paper fans
If GetItemReq($aItem) <= 10 Then Return False
Return $pick_up_golds
Case Else
|
and superior vigor rune,
[IMG=expandable: 1]  [/IMG]
|
|
|
03/02/2022, 00:51
|
#214
|
elite*gold: 0
Join Date: Aug 2014
Posts: 1
Received Thanks: 0
|
ATFH logic to kill the great destroyer with a Derv was ****. I rewrote it with a timer to ensure lava wave interruption.
Code:
Func KillTGD_Derv()
If GetIsDead(-2) Then Return
Local $target, $distance, $seq = 0, $hTimer = TimerInit(), $ka = -16000, $ku = -10000, $ne = -9000
$lAgentArray = GetAgentArray(0xDB)
RndSleep(GetPing() + 150)
Do
If GetIsDead(-2) Then Return
$target = GetTargetDestroyer(-2)
ChangeTarget($target)
If GetTargetSkill($target) == $lava Then
UseSkill(5,-1)
RndSleep(50)
ElseIf GetTargetSkill($target) == $kd Then
UseSkillEx(7)
RndSleep(50)
Else
If IsRecharged(8) And (TimerDiff($hTimer)-$ka)>16000 Then
$ka = TimerDiff($hTimer)
UseSkillEx(8)
$distance = GetDistance($target, -2)
Attack(-1)
RndSleep(50)
ElseIf GetSkillbarSkillAdrenaline(6) >= 80 and GetDistance($target,-2) and (TimerDiff($hTimer)-$ku)>10000 Then
$ku = TimerDiff($hTimer)
UseSkillEx(6)
RndSleep(50)
ElseIf IsRecharged(4) And (TimerDiff($hTimer)-$ne)>9000 Then
$ne = TimerDiff($hTimer)
UseSkill(4, -1)
RndSleep(50)
ElseIf $seq == 0 Then
UseSkillEx(1)
$seq += 1
RndSleep(50)
ElseIf $seq == 1 Then
UseSkillEx(2)
$seq += 1
RndSleep(50)
ElseIf $seq == 2 Then
UseSkillEx(3)
$seq = 0
RndSleep(50)
EndIf
EndIf
Until GetNumberOfFoesInRangeOfAgentDestroyer() <= 0 Or GetIsDead(-2)
EndFunc
|
|
|
03/02/2022, 12:54
|
#215
|
elite*gold: 0
Join Date: Feb 2022
Posts: 7
Received Thanks: 3
|
Quote:
Originally Posted by jacques52
|
It literally tells you where the problem is. That function wants 3 parameters and you are sending 4.
Heres your function
Code:
Func IdentifyBag($aBag, $aWhites = False, $aGolds = True)
Local $lItem
If Not IsDllStruct($aBag) Then $aBag = GetBag($aBag)
For $i = 1 To DllStructGetData($aBag, 'Slots')
$lItem = GetItemBySlot($aBag, $i)
If DllStructGetData($lItem, 'ID') == 0 Then ContinueLoop
If GetRarity($lItem) == 2621 And $aWhites == False Then ContinueLoop
If GetRarity($lItem) == 2624 And $aGolds == False Then ContinueLoop
IdentifyItem($lItem)
Sleep(GetPing())
Next
EndFunc ;==>IdentifyBag
which means you can send the following parameters
Code:
IdentifyBag($aBag)
IdentifyBag($aBag, False)
IdentifyBag($aBag, False, False)
Since you call your Method like this
Code:
IdentifyBag($lBag, False, True, $store_golds)
the Bot has no idea what to do with the last parameter and it crashes.
|
|
|
03/05/2022, 15:34
|
#216
|
elite*gold: 0
Join Date: Mar 2022
Posts: 1
Received Thanks: 0
|
hello, i do i get a bot to work?
i downloaded 1 and im new to this.
which way do i get it to work?
|
|
|
03/06/2022, 06:27
|
#217
|
elite*gold: 0
Join Date: Sep 2018
Posts: 17
Received Thanks: 3
|
Quote:
Originally Posted by israeli guy
hello, i do i get a bot to work?
i downloaded 1 and im new to this.
which way do i get it to work?
|
Download AutoIT to run the programs
|
|
|
03/06/2022, 12:31
|
#218
|
elite*gold: 0
Join Date: Aug 2016
Posts: 34
Received Thanks: 6
|
I am trying to get the COF derv bot running since bones are extremly expensive these days. However the fail rate is quite huge when running in HM, anyone has an idea to improve? Or is this supposed to be ran in NM?
|
|
|
03/07/2022, 02:22
|
#219
|
elite*gold: 0
Join Date: May 2011
Posts: 45
Received Thanks: 58
|
Quote:
Originally Posted by QuiXux
I am trying to get the COF derv bot running since bones are extremly expensive these days. However the fail rate is quite huge when running in HM, anyone has an idea to improve? Or is this supposed to be ran in NM?
|
It is meant to be run in NM
|
|
|
03/07/2022, 10:29
|
#220
|
elite*gold: 0
Join Date: Dec 2021
Posts: 4
Received Thanks: 0
|
Hey,
Does anyone have a war supply functionning bot ?
I tried anything on last subject about it and nothing happened. "Script paused".
Maybe GWA˛ not updated. Not sure.
Thanks for help
|
|
|
03/07/2022, 13:45
|
#221
|
elite*gold: 0
Join Date: Aug 2019
Posts: 20
Received Thanks: 0
|
hey guys im trying to use omifarmer, but every time I open it up it crashes my GW, any ideas? thank you
|
|
|
03/08/2022, 07:58
|
#222
|
elite*gold: 0
Join Date: Aug 2016
Posts: 34
Received Thanks: 6
|
Page 13 you will find an Omnifarmer which works perfektly for me
|
|
|
03/08/2022, 13:49
|
#223
|
elite*gold: 0
Join Date: Aug 2019
Posts: 20
Received Thanks: 0
|
hmm not sure what im doing wrong, every time i open the bot it crashes my GW
|
|
|
03/09/2022, 14:05
|
#224
|
elite*gold: 0
Join Date: Sep 2018
Posts: 17
Received Thanks: 3
|
The titan gemstone farm (With dervish) Fails after the first set of Titans are defeated, any advice? I have the exact req's per the photos included in the file. It has run for 3 days and I've gotten no gemstones. Any help appreciated.
|
|
|
03/09/2022, 14:48
|
#225
|
elite*gold: 0
Join Date: Feb 2018
Posts: 33
Received Thanks: 15
|
Quote:
Originally Posted by GwGuru
The titan gemstone farm (With dervish) Fails after the first set of Titans are defeated, any advice? I have the exact req's per the photos included in the file. It has run for 3 days and I've gotten no gemstones. Any help appreciated.
|
They are few and far between, but i have never gotten a crash. Make sure your lightbringer rank is maxed and your hero runes are maxed as well with +3. Everything else should be as described in the bot.
|
|
|
All times are GMT +1. The time now is 06:57.
|
|