[2021] Guild Wars Working Bots

02/26/2022 17:46 stupper#211
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 Robindeman#212
Hi guys,

Is there a updated one for the seconday profession changer?
03/01/2022 13:31 jacques52#213
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][Only registered and activated users can see links. Click Here To Register...][/IMG]
03/02/2022 00:51 juuso666#214
ATFH logic to kill the great destroyer with a Derv was crap. 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 Powarangar#215
Quote:
Originally Posted by jacques52 View Post
[Only registered and activated users can see links. Click Here To Register...]
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 israeli guy#216
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 GwGuru#217
Quote:
Originally Posted by israeli guy View Post
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 QuiXux#218
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 moneyvsmoney#219
Quote:
Originally Posted by QuiXux View Post
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 Rems54#220
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 monky657#221
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 QuiXux#222
Page 13 you will find an Omnifarmer which works perfektly for me
03/08/2022 13:49 monky657#223
hmm not sure what im doing wrong, every time i open the bot it crashes my GW
03/09/2022 14:05 GwGuru#224
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 glechene#225
Quote:
Originally Posted by GwGuru View Post
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.