Register for your free account! | Forgot your password?

You last visited: Today at 01:12

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

Advertisement



GW Working Bots 2020

Discussion on GW Working Bots 2020 within the GW Exploits, Hacks, Bots, Tools & Macros forum part of the Guild Wars category.

Reply
 
Old 09/09/2020, 10:07   #886
 
elite*gold: 0
Join Date: Feb 2013
Posts: 20
Received Thanks: 0
hi, could someone help me? I have this SSLB bot that is the only one that I have managed to start working, it leaves the city, takes the blessing, takes the jundo, but when attacking the first group of margonites the game Crash. I would greatly appreciate help with this and so that I can serve more people.
Attached Files
File Type: rar SSLB.rar (44.8 KB, 18 views)
MMOLuisChi is offline  
Old 09/09/2020, 17:36   #887
 
Restia Ashdoll's Avatar
 
elite*gold: 0
Join Date: Apr 2016
Posts: 305
Received Thanks: 163
Quote:
Originally Posted by OriginsEXE View Post
What could I put to pick up a dungeon and boss key? I am having some issues with this

Deldrimor bot has 2 remaining issues

1) Has trouble picking up dungeon and boss key

2) GUI does not display amount of Deldrimor points gained.

Anyone wanna help me finish fixing this?

Cheers
CanPickup func has the possibilty to pick up items with a certain type
18 is the type for Keys (boss/dungeon) if i am not mistaken, so if you add a switch like this it should work


Code:
 

Global Const $TYPE_KEY					= 18


  Switch $aType
	  Case $TYPE_KEY
  Return True
Restia Ashdoll is offline  
Old 09/09/2020, 20:01   #888
 
elite*gold: 0
Join Date: Jan 2020
Posts: 41
Received Thanks: 4
Quote:
Originally Posted by Restia Ashdoll View Post
CanPickup func has the possibilty to pick up items with a certain type
18 is the type for Keys (boss/dungeon) if i am not mistaken, so if you add a switch like this it should work


Code:
 

Global Const $TYPE_KEY					= 18


  Switch $aType
	  Case $TYPE_KEY
  Return True
Thanks, should I add the switch into the CanPickUp func?
OriginsEXE is offline  
Old 09/09/2020, 21:02   #889
 
Restia Ashdoll's Avatar
 
elite*gold: 0
Join Date: Apr 2016
Posts: 305
Received Thanks: 163
Quote:
Originally Posted by OriginsEXE View Post
Thanks, should I add the switch into the CanPickUp func?
yes indeed here an example

Code:
Global Const $TYPE_KEY					= 18

Func CanPickUpEx($aItem, $bCanPickup)
	If Not $bCanPickup Then Return True
	$aModelID = DllStructGetData($aItem, 'modelid')
	$aExtraID = DllStructGetData($aItem,'extraid')
	$aRarity = GetRarity($aItem)
	$aType = DllStructGetData($aItem,'Type')
	$aItemID = DllStructGetData($aItem, "id")
	$aReq = GetItemReq($aItem)

   Switch $aRarity
	  Case 2624 ; Gold Items
			$iGoldCount += 1
			Return True
;	  Case 2627 ; Green Items
;			$iUniqueCount += 1
;			Return True
   EndSwitch

   Switch $aModelID
	  Case 1953, 1956, 1957, 1958, 1959, 1960, 1961, 1962, 1963, 1964, 1965, 1966, 1967, 1968, 1969, 1970, 1971, 1972, 1973, 1974, 1975 ; All Froggy's
		 $iFroggyCount += 1
		 Return True
	  Case 935, 936 ; 935 = Diamond, 936 = Onyx Gemstone
		 Return True
	  Case 146 ; Dyes
		 If $aExtraID = 10 then; Black dye
			$iBlackDyeCount += 1
			Return True
		 Else
			Return False
		 Endif
	  Case 22751 ; Lockpick
		 $iLockpickCount += 1
		 Return True
	  Case 3256, 3746, 5594, 5595, 5611, 21233, 22279, 22280 ; Scrolls
		 $iScrollCount += 1
		 Return True
	  Case 21786, 21787, 21788, 21789, 21790, 21791, 21792, 21793, 21794, 21795, 21796, 21797, 21798, 21799, 21800, 21801, 21802, 21803, 21804, 21805 ; Tomes
		 $iTomeCount += 1
		 Return True
	  Case 910, 2513, 5585, 6049, 6366, 6367, 6375, 15477, 19171, 19172, 19173, 22190, 24593, 28435, 30855, 31145, 31146, 35124, 36682 _  ; alcohol
			, 15528, 15479, 19170, 21492, 21812, 22644, 30208, 31150, 35125, 36681 _  ; sweets
			, 17060, 17061, 17062, 22269, 28431, 28432, 28436, 29431, 31151, 31152, 31153, 35121 _  ; Sweet Pcons
			, 6370, 19039, 21488, 21489, 22191, 26784, 28433, 35127 _  ; DP Removal Sweets
			, 556, 18345, 21491, 37765, 21833, 28433, 28434  ; Special Drops
		 Return True
		Case 2511 ; Gold/Plat
			$aAmount = DllStructGetData($aItem, 'Value')
			If GetGoldCharacter() + $aAmount > 100000 Then
				Return False
			Else
				Return True
			EndIf
;		Case 24372 ; Naga Shaman Polymock Piece
;			Return True
	Case 27036 ; Amphibian Tongue - Nicholas Sometimes
			Return True
   EndSwitch

   Switch $aType
	  Case $TYPE_KEY
		 Return True
	  Case $TYPE_SHIELD ; shields
		 If $aReq = 8 And GetItemMaxDmg($aItem) = 16 Then ; Req8 Shields
			Return True
		 ElseIf $aReq = 7 And GetItemMaxDmg($aItem) = 15 Then ; Req7 Shields
			Return True
		 ElseIf $aReq = 6 And GetItemMaxDmg($aItem) = 14 Then ; Req6 Shields
			Return True
		 ElseIf $aReq = 5 And GetItemMaxDmg($aItem) = 13 Then ; Req5 Shields
			Return True
		 ElseIf $aReq = 4 And GetItemMaxDmg($aItem) = 12 Then ; Req4 Shields
			Return True
		 EndIf
	  EndSwitch

   Return False
EndFunc
Restia Ashdoll is offline  
Thanks
1 User
Old 09/11/2020, 03:38   #890
 
elite*gold: 0
Join Date: Jan 2019
Posts: 53
Received Thanks: 22
So i took a shot at this deldrimor farmer script and made a few changes to it. I made it add heroes before the farm, you can also change in the script which build you want it to load, depending on which character you wanna farm this with. I haven't done a full run with this yet to work on the key function part. I'm interested in this script to help with the deldrimor title.
Attached Files
File Type: rar Deldrimor Farmer.rar (50.4 KB, 27 views)
ForgottenRelic is offline  
Old 09/11/2020, 09:31   #891
 
elite*gold: 0
Join Date: Feb 2014
Posts: 5
Received Thanks: 2
I've been using the Keiran 7.0 bot for a while now, but it only succesfully deposits gold into bank when I start the script, not when the bot reaches 90k later on. Does anyone know how to fix this?
Attached Files
File Type: rar Keiran 7.0.rar (54.2 KB, 53 views)
Wimpydude is offline  
Old 09/11/2020, 10:33   #892
 
elite*gold: 0
Join Date: Sep 2019
Posts: 16
Received Thanks: 5
What are the best bots for farming money? Either ecto or cash?
sabert is offline  
Old 09/11/2020, 14:32   #893
 
elite*gold: 0
Join Date: Feb 2014
Posts: 20
Received Thanks: 0
can someone tell me why "COF Farmer" does not sell the golden items ?
monsterzone93 is offline  
Old 09/11/2020, 16:04   #894
 
elite*gold: 0
Join Date: Feb 2014
Posts: 181
Received Thanks: 337
Quote:
Originally Posted by Wimpydude View Post
I've been using the Keiran 7.0 bot for a while now, but it only succesfully deposits gold into bank when I start the script, not when the bot reaches 90k later on. Does anyone know how to fix this?
Simply find the function for EnterQuest()

And at the very beginning of the function add:

Code:
EnterQuest()
		If GetGoldCharacter() > 90000 Then
			Out("High Gold Amount")
			TravelGH()
			Out("Storing Gold")
			DepositGold()
			LeaveGH()
			Sleep(2500)
		EndIf
This will solve the issue.
RiflemanX is offline  
Thanks
2 Users
Old 09/12/2020, 07:16   #895
 
elite*gold: 0
Join Date: Feb 2014
Posts: 5
Received Thanks: 2
Quote:
Originally Posted by RiflemanX View Post
Simply find the function for EnterQuest()

And at the very beginning of the function add:

Code:
EnterQuest()
		If GetGoldCharacter() > 90000 Then
			Out("High Gold Amount")
			TravelGH()
			Out("Storing Gold")
			DepositGold()
			LeaveGH()
			Sleep(2500)
		EndIf
This will solve the issue.
I tried this, but it still didn't work. Turns out the issue was that the script was trying to use STOREGOLD() on line 509. I replaced this with DepositGold() and now it works properly. Thanks for the suggestion anyway
Wimpydude is offline  
Thanks
1 User
Old 09/12/2020, 17:52   #896
 
Restia Ashdoll's Avatar
 
elite*gold: 0
Join Date: Apr 2016
Posts: 305
Received Thanks: 163
Quote:
Originally Posted by MMOLuisChi View Post
hi, could someone help me? I have this SSLB bot that is the only one that I have managed to start working, it leaves the city, takes the blessing, takes the jundo, but when attacking the first group of margonites the game Crash. I would greatly appreciate help with this and so that I can serve more people.
I wrote a quick and dirty one to get some SS to get 2,5 for story - guess you can put that on hm to farm more ->

Bot just goes out Yohlon Haven and kills the 6 Insect groups (heros do all the work)

gives around 100 points every 2min so pretty slow
Restia Ashdoll is offline  
Old 09/14/2020, 17:23   #897
 
elite*gold: 0
Join Date: May 2013
Posts: 230
Received Thanks: 32
Quote:
Originally Posted by GW Devil View Post
was hoping someone could just add picking up red iris to the charr farmer for us? the red iris farmer is broke he runs to rock & that's it lol
I don't mind paying someone to do this either seeing as deeperblue says he "doesn't code anymore"
GW Devil is offline  
Old 09/15/2020, 06:08   #898
 
phat34's Avatar
 
elite*gold: 0
Join Date: Sep 2014
Posts: 354
Received Thanks: 120
Cool

You can always tip me if you like...

**-- red iris fix -- all credits to original authors....

copy this over in the main directory!
Attached Files
File Type: zip OmniFarm_Bot - PreSearing-p34.zip (43.3 KB, 63 views)
phat34 is offline  
Old 09/15/2020, 23:11   #899
 
elite*gold: 0
Join Date: Mar 2008
Posts: 44
Received Thanks: 0
Not picking up any characters for me. Even after refresh.
The "select character" list is empty.

Ps thanks for the update.

Quote:
Originally Posted by phat34 View Post
You can always tip me if you like...

**-- red iris fix -- all credits to original authors....

copy this over in the main directory!
Toxicland is offline  
Old 09/16/2020, 00:34   #900
 
elite*gold: 0
Join Date: Jul 2014
Posts: 14
Received Thanks: 0
Which bot generates the highest amount of profit per hour? During normal time events, so ToC farming during pantheon weekend excluded.

Feather at Jahai seems to be like 1-2e/hour only.
CaptainMe is offline  
Reply


Similar Threads Similar Threads
[WTT] UPlay Anno 2020 Complete Key gegen Anno 1404/Anno 2020 Complete STEAM
08/12/2015 - Steam Trading - 0 Replies
Want to Trade UPlay Anno 2020 Complete Key gegen Anno 1404 oder Anno 2020 Complete STEAM only with Middleman



All times are GMT +2. The time now is 01:12.


Powered by vBulletin®
Copyright ©2000 - 2024, 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 ©2024 elitepvpers All Rights Reserved.