Register for your free account! | Forgot your password?

You last visited: Today at 16:19

  • 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 06/24/2020, 18:34   #616
 
elite*gold: 0
Join Date: Jul 2008
Posts: 78
Received Thanks: 12
I assume it's not working, is it?
lemoutondu10 is offline  
Old 06/24/2020, 21:27   #617
 
elite*gold: 0
Join Date: Dec 2010
Posts: 51
Received Thanks: 25
salvage function is working deroni mention the thread with the correct info you have to update your gwa2
corey54321 is offline  
Old 06/25/2020, 19:44   #618
 
elite*gold: 0
Join Date: Mar 2020
Posts: 29
Received Thanks: 10
Couldn't seem to find one, but honestly didn't look that hard out of sheer laziness. Is there a zaishen chest bot out there? I'm so sick of opening that sucker.
pittapatta is offline  
Old 06/25/2020, 19:58   #619
 
elite*gold: 0
Join Date: Mar 2020
Posts: 35
Received Thanks: 12
thanks Smiley, i'll look into it
ooklaba is offline  
Old 06/26/2020, 11:59   #620
 
elite*gold: 0
Join Date: Jan 2018
Posts: 11
Received Thanks: 1
can someone provide the func/code of opening a istani chest (or chests in general)?
buffnar0 is offline  
Old 06/26/2020, 15:10   #621
 
elite*gold: 0
Join Date: Aug 2017
Posts: 118
Received Thanks: 180
Quote:
Originally Posted by buffnar0 View Post
can someone provide the func/code of opening a istani chest (or chests in general)?
You should start by taking a look at the BorealChest runner bot. There is a func to seek & open chests.
For Istan chest, you should try something like scanning for all agent in the area and keeping only the objects then selecting like Getagentbyname = "Istan Chest" or something like that.

Have fun coding.
maril15 is offline  
Thanks
1 User
Old 06/26/2020, 16:46   #622
 
elite*gold: 0
Join Date: Apr 2017
Posts: 41
Received Thanks: 3
Hey guys,
I am trying to keep up to date with all the new develmopments here, but i might have missed it. did anyone get the hero functions to work? specifically flagging and using a particular skill?

Quote:
Originally Posted by pittapatta View Post
Couldn't seem to find one, but honestly didn't look that hard out of sheer laziness. Is there a zaishen chest bot out there? I'm so sick of opening that sucker.
i haven't seen one, but you can probably either take the chest opening function from the pongmei bot, or just interact with the chest as agent, not sure how it works with zaishen chest.

should take about 3 minutes to adapt another bot to do this for you

Quote:
Originally Posted by corey54321 View Post
salvage function is working deroni mention the thread with the correct info you have to update your gwa2
yes the salvage function works. i had problems with a bot that loaded headers from an extra header file instead of the gwa2. i didnt realize and didnt add the headers there, so kept getting crashes.
wolf_of_the_north is offline  
Old 06/27/2020, 09:57   #623
 
elite*gold: 0
Join Date: May 2018
Posts: 6
Received Thanks: 0
Need BOT for Asura and Dwarf Points

Hello. i'm looking for a working bot for asura and dwarf points. thank you
ener-73 is offline  
Old 06/27/2020, 17:33   #624
 
elite*gold: 0
Join Date: Jun 2020
Posts: 9
Received Thanks: 1
I've been testing the froggy bot from @ but sadly, it won't work :/

Edgrala is offline  
Old 06/28/2020, 13:35   #625
 
elite*gold: 0
Join Date: Sep 2018
Posts: 86
Received Thanks: 71
Quote:
Originally Posted by pittapatta View Post
Couldn't seem to find one, but honestly didn't look that hard out of sheer laziness. Is there a zaishen chest bot out there? I'm so sick of opening that sucker.
The general pattern to open a chest is:
  • Find the chest
  • Go to the chest
  • Use the chest (either using ActionInteract() or OpenChest() functions)

In order to find the chest, there are 3 options:

If you know the coordinates of the chest, then the easiest is:

Code:
	Do
	   RndSleep(250)
	   $Chest = GetNearestSignpostToCoords($x, $y)
	Until DllStructGetData($Chest, 'Id') <> 0
If you do not know the coordinates you can use a loop on existing agents and selecting only agents that have a Chest "extratype":

Edit: Extra type for zaischen chest is 9523, added to the below functions

Code:
	$AgentArray = GetAgentArraySorted(0x200)	;0x200 is used for static agents
	Out ("Looking for chest")
	For $i = 0 To UBound($AgentArray) - 1
	    $lAgent = GetAgentByID($AgentArray[$i][0])
		$lExtraType = DllStructGetData($lAgent, 'ExtraType')
		If $lExtraType <> 4582 And $lExtraType <> 8141 And $lExtraType <> 8934 And $lExtraType <> 9523 And $lExtraType <> 6 Then ContinueLoop
	Next
You can also cycle through agents without GetAgentArraySorted() function:

Code:
    For $i = 1 to GetMaxAgents()
        $agent = GetAgentById($i)
        $distance = GetDistance($agent, -2)
        $extratype = DllStructGetData($agent, 'extratype')
        If $extratype <> 4582 And $lExtraType <> 8141 And $lExtraType <> 8934 And $lExtraType <> 9523 And $lExtraType <> 6 or $distance > 5000 Then ContinueLoop
    Next
In order to open the chest you can either target the newly found chest and then press "spacebar":

Code:
ChangeTarget($chest) 
	Do
		RndSleep(250)
		ActionInteract()
	Until GetDistance($chest, -2) <150
Note that if you may get blocked on your way to the chest, you should use a movement function to get move you to the chest first (GoToSignPost() or MoveTo() or AggroMoveto() if you might encounter ennemies))

Or you can use GoSignPost + OpenChest()

Code:
  GoSignpost($chest)
  OpenChest()
Note that this method does not work on dungeon end chest without being close to the chest, however for other chests it will open the chest without you having moved to the chest.

For the Zaischen chest, since it has fixed coordinates it may be easier to just target the chest nearest to coordinates and then use Actioninteract().
Also if Zaischen Chest behaves like end chests, it may also be a bit finicky to use the OpenChest() function using just GoSignPost().

There is also a way that involves using a zaischen key but not sure if headers for that are up-to-date.

Quote:
Originally Posted by Edgrala View Post
I've been testing the froggy bot from @ but sadly, it won't work :/

It should work if you replace GWA2 with the latest one. PM me if you face any issues.

I have created a more advanced cleaned up version with full custom salvage and improved wipe management since, but a fixed version should still do the job.
logicdoor is offline  
Thanks
5 Users
Old 06/28/2020, 20:04   #626
 
elite*gold: 0
Join Date: Jul 2008
Posts: 78
Received Thanks: 12
Are there some faction of eotn title points bot?
lemoutondu10 is offline  
Old 06/28/2020, 23:47   #627
 
elite*gold: 0
Join Date: Oct 2011
Posts: 6
Received Thanks: 3
Hello, i use Gwmultilaunch, on 3 accounts.

Work perfectly, 3 games in the same time. But i can't bot with the 3. Only 2 are found on character name, and every bot i try is the same thing.

Anyone has an idea ?
catalan66 is offline  
Old 06/29/2020, 01:28   #628
 
elite*gold: 0
Join Date: Apr 2010
Posts: 4
Received Thanks: 8
Quote:
Originally Posted by Edgrala View Post
I've been testing the froggy bot from @ but sadly, it won't work :/

I've fixed the Froggie bot. I will post it after I've optimized it.
Rappy99 is offline  
Thanks
8 Users
Old 06/29/2020, 01:52   #629
 
elite*gold: 0
Join Date: Jun 2020
Posts: 9
Received Thanks: 1
Thanks guys for your replies

Does any of you mind to explain me what his the purpose of the GWA2 ? Where to have it (an update one as @ recommended) and how to use it ?
(Since i'm a passiv user that just extract and launch bots and want to know just a bit better, I have others bots that "don't work" but maybe solve this GWA2 problem should fix it ; like the rollerbeettle one)
Edgrala is offline  
Old 06/29/2020, 18:59   #630
 
elite*gold: 0
Join Date: May 2020
Posts: 3
Received Thanks: 2
MultiLaunch

Quote:
Originally Posted by catalan66 View Post
Hello, i use Gwmultilaunch, on 3 accounts.

Work perfectly, 3 games in the same time. But i can't bot with the 3. Only 2 are found on character name, and every bot i try is the same thing.

Anyone has an idea ?
Do you have the gwtoolbox running on one? If so then wait to run that till after all your bots load.
If not then which format is the code looking for the char names? Are you using the GWA2 GetLoggedCharNames? If so then you may have something that is modifying the name already. If not then use the GetLoggedCharNames() as it will return a nice bar deliminated list for you to use in a dropdown.
Smores182 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 16:19.


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.