Register for your free account! | Forgot your password?

You last visited: Today at 14:23

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

Advertisement



GW Working Bots 2019!

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

Reply
 
Old 07/30/2019, 20:18   #1276
 
elite*gold: 0
Join Date: Apr 2016
Posts: 122
Received Thanks: 9
Quote:
Originally Posted by oneshout View Post
When you want help, try to give us more details : what bot are you talking about : boeal bot, pogmei bot, others ? a link where you got it ?
the only one fom this thread aka boreal chest run. the link is the one that is in your signature :

I got and error when i want to open the .zip, I tried with another bot and still works.

nvm i saw "with june update bots are outdated" my bad
random/ is offline  
Old 07/30/2019, 21:44   #1277
 
oneshout's Avatar
 
elite*gold: 0
Join Date: Dec 2017
Posts: 385
Received Thanks: 294
Quote:
Originally Posted by random/ View Post
the only one fom this thread aka boreal chest run. the link is the one that is in your signature :

I got and error when i want to open the .zip, I tried with another bot and still works.

nvm i saw "with june update bots are outdated" my bad
The only bot is from NiliyaFlamme and it is in a RAR file, not a zip... you need Winrar to open it (tested and it open without problem)
oneshout is offline  
Old 07/31/2019, 20:09   #1278
 
Tamina22300's Avatar
 
elite*gold: 0
Join Date: Jun 2014
Posts: 54
Received Thanks: 1
I tried to edit the source code but to no avail. I have mistakes all the way, no matter what kind of points I ask to make. I do not know where the problem comes from .. I still had a mistake yesterday with a big white message asking me to send an error report to Arena Net .. My games to crash, for no reason, yet the GWA2 is up to date etc ..

Always with the Title Package bot.

I don't know how to solve it.. :/

Selene ~
Tamina22300 is offline  
Old 07/31/2019, 20:13   #1279
 
oneshout's Avatar
 
elite*gold: 0
Join Date: Dec 2017
Posts: 385
Received Thanks: 294
Quote:
Originally Posted by Tamina22300 View Post
I tried to edit the source code but to no avail. I have mistakes all the way, no matter what kind of points I ask to make. I do not know where the problem comes from .. I still had a mistake yesterday with a big white message asking me to send an error report to Arena Net .. My games to crash, for no reason, yet the GWA2 is up to date etc ..

Always with the Title Package bot.

I don't know how to solve it.. :/

Selene ~
Put the game in english and test again
Ps: met le jeu en anglais et test à nouveau

Have you seen the update of by Coaxx123 ?
oneshout is offline  
Old 07/31/2019, 20:19   #1280
 
Tamina22300's Avatar
 
elite*gold: 0
Join Date: Jun 2014
Posts: 54
Received Thanks: 1
Quote:
Originally Posted by oneshout View Post
Put the game in english and test again
Ps: met le jeu en anglais et test à nouveau

Have you seen the update of by Coaxx123 ?
Mdr, bon je sais que mon Anglais est approximatif mais bon j'avais compris la phrase

Je vais essayer avec le nouvel update, merci bien ♥
Tamina22300 is offline  
Old 07/31/2019, 20:22   #1281
 
oneshout's Avatar
 
elite*gold: 0
Join Date: Dec 2017
Posts: 385
Received Thanks: 294
Quote:
Originally Posted by Tamina22300 View Post
Mdr, bon je sais que mon Anglais est approximatif mais bon j'avais compris la phrase

Je vais essayer avec le nouvel update, merci bien ♥
tkt, le site est essentiellement anglophone; Ce n’était pas pour toi mais surtout pour les autres lecteurs
D'une manière ou d'une autre, a ton service si tu as d'autres questions.
oneshout is offline  
Old 08/01/2019, 21:52   #1282
 
Coaxx123's Avatar
 
elite*gold: 0
Join Date: Mar 2019
Posts: 133
Received Thanks: 42
So I want to add in a timeout Func or loop to the vsf bot because sometimes it gets stuck at certain groups and just heads towards a wall, obviously not great for when I'm leaving it on.

My research for the bot is to insert the timer in the already there while loop which integrates the mainfarm() function.

I'm not near the pc atm but am I right in thinking,

Code:
Global $timeout
While 1
$timeout = TimerInit() 
Do
Mainfarm()
Until TimerDiff($timeout) >=1500000 ;hopefully 25 mins
WEnd
So if I'm right that would start the timer and would perform the mainfarm until the difference between the timerinit and the timerdiff is 25 minutes then end the loop and restart? Also do you need to manually reset the timer with 0 variables? Not mad great at coding but trying to whip my head around it as would be a very beneficial function for me to this bot
Coaxx123 is offline  
Old 08/02/2019, 09:18   #1283
 
elite*gold: 0
Join Date: Jul 2011
Posts: 145
Received Thanks: 78
Quote:
Originally Posted by Coaxx123 View Post
So I want to add in a timeout Func or loop to the vsf bot because sometimes it gets stuck at certain groups and just heads towards a wall, obviously not great for when I'm leaving it on.

My research for the bot is to insert the timer in the already there while loop which integrates the mainfarm() function.

I'm not near the pc atm but am I right in thinking,

Code:
Global $timeout
While 1
$timeout = TimerInit() 
Do
Mainfarm()
Until TimerDiff($timeout) >=1500000 ;hopefully 25 mins
WEnd
So if I'm right that would start the timer and would perform the mainfarm until the difference between the timerinit and the timerdiff is 25 minutes then end the loop and restart? Also do you need to manually reset the timer with 0 variables? Not mad great at coding but trying to whip my head around it as would be a very beneficial function for me to this bot
I would add a timer function via AdLibRegister(calls a method in a certain time interval), which sets a bool to false when a certain time is reached. Before any action, always check the bool. So in case the time limit is reached, the bot 'drops' through the main loop and starts again.

Code:
Global $stuck = 0
Global $timer

Func CheckStuck()
If TimerDiff($timer) > 1500000 Then $stuck = 1
EndFunc
  

Func Mainloop()
AdLibRegister("CheckStuck")
$stuck = 0
Local $timer = TimerInit()

...
If $stuck = 0 Then FightGroup1()
If $stuck = 0 Then FightGroup2()
...
If $stuck = 0 Then OpenChest()
AdLibUnRegister("CheckStuck")
EndFunc
n0futur3 is offline  
Thanks
1 User
Old 08/02/2019, 09:23   #1284
 
mhaendler's Avatar
 
elite*gold: 0
Join Date: Jul 2008
Posts: 1,826
Received Thanks: 226
Quote:
Originally Posted by n0futur3 View Post
I would add a timer function via AdLibRegister(calls a method in a certain time interval), which sets a bool to false when a certain time is reached. Before any action, always check the bool. So in case the time limit is reached, the bot 'drops' through the main loop and starts again.

Code:
Global $stuck = 0
Global $timer

Func CheckStuck()
If TimerDiff($timer) > 1500000 Then $stuck = 1
EndFunc
  

Func Mainloop()
AdLibRegister("CheckStuck")
$stuck = 0
Local $timer = TimerInit()

...
If $stuck = 0 Then FightGroup1()
If $stuck = 0 Then FightGroup2()
...
If $stuck = 0 Then OpenChest()
AdLibUnRegister("CheckStuck")
EndFunc
A Better solution would be not to have the timer globally and checks via "adlibregister", instead use it in your "fightgroup" function, so every fight has its own timer.

when the timeout is hit, set $stuck =1 and the other fights shouldnt be performed, at least thats what i think it does (dont know the source-code)

That would be the way i try to solve the issue (overall i dont like functions that get called every *** MilliSeconds, this is just a way to solve a bad programming, IMO)

Adlibregister can make problems on low spec pc, espacially when you have multiple clients / bots running

_
Greetings
mhaendler
mhaendler is offline  
Thanks
3 Users
Old 08/02/2019, 09:50   #1285
 
Coaxx123's Avatar
 
elite*gold: 0
Join Date: Mar 2019
Posts: 133
Received Thanks: 42
Quote:
Originally Posted by mhaendler View Post
A Better solution would be not to have the timer globally and checks via "adlibregister", instead use it in your "fightgroup" function, so every fight has its own timer.

when the timeout is hit, set $stuck =1 and the other fights shouldnt be performed, at least thats what i think it does (dont know the source-code)

That would be the way i try to solve the issue (overall i dont like functions that get called every *** MilliSeconds, this is just a way to solve a bad programming, IMO)

Adlibregister can make problems on low spec pc, espacially when you have multiple clients / bots running

_
Greetings
mhaendler
This is my problem, obviously being new to autoit (I have dabbled in vb.net) I see the code and think everything needs a complicated answer, but mhaendler your method is such a simple solution, and thank you aswell nofutur3 for both contributions
Coaxx123 is offline  
Old 08/02/2019, 15:06   #1286
 
Tamina22300's Avatar
 
elite*gold: 0
Join Date: Jun 2014
Posts: 54
Received Thanks: 1
Quote:
Originally Posted by oneshout View Post
Put the game in english and test again
Ps: met le jeu en anglais et test à nouveau

Have you seen the update of by Coaxx123 ?
I've tried the bot, but I don't know if it's my connection or my computer but after 2 runs, the bot crashed.. Don't know why :/

But work correctly during the runs.
Tamina22300 is offline  
Old 08/02/2019, 16:50   #1287
 
oneshout's Avatar
 
elite*gold: 0
Join Date: Dec 2017
Posts: 385
Received Thanks: 294
Quote:
Originally Posted by Tamina22300 View Post
I've tried the bot, but I don't know if it's my connection or my computer but after 2 runs, the bot crashed.. Don't know why :/

But work correctly during the runs.
What kind of run have you try ? i just try norn run and no crash... some weird things happen like sometimes, when you die once, it seem character don't use skills anymore...but no crash at all
oneshout is offline  
Old 08/02/2019, 17:07   #1288
 
elite*gold: 0
Join Date: Feb 2014
Posts: 181
Received Thanks: 337
2019 Boreal Chest Runner v1.5

2019 Boreal Chest Runner v1.5

~Farms Chest from Boreal Station to increase Lucky/Unlucky Title

Build:
1. Dwarven Stability
2. Dash
3. "I AM UNSTOPPABLE" (Optional, select in GUI)
4. None
5. None
6. None
7. None
8. None

Weapons & Equipment:
Any Armor
Any Staff w/ 20% Enchant


~Updated v1.0
~Resized GUI
~Added Render
~Added PurgeHook
~Relocated Buttons
~Removed Time Stamp
~Added Drop-Down Login Box
~Added Lockpicks Remaining Counter
~Added Treasure Hunter display counter
~Removed unnecessary sleep times (10 seconds faster now)

Updated v1.1
~Corrected merch functions
~Reduced load times (even faster now)
~Created Radio Buttons for Store/Merch Golds
~Reduced working inventory bags to first 3 bags
(Will only pickup, store, merch from first 3 bags)

Updated v1.2
~Corrected merch functions
~Removed unecessary functions
~Small edits for ID/Sell function
~Edited and upgraded Sell function
~Removed "Buy Lockpicks" checkbox from GUI
~Added "Bunny Boost!" Function. If selected, will use chocolate bunnies for 50% speed boost in outpost!
~(Choc. Bunnies do not need to be in your inventory as the function will use them from your Xunlai Storage Chest)

Updated v1.3
~Updates by Malinkadink 3.3.19
~GUI: Changed version# to v1.3a
~$TimeCheck times have been adjusted
~Second cast of Dwarven Stability added to keep up Dash
~DllStructGetData($item, 'AgentID') = 1 <===Adjusted for testing

Updated v1.3a
~Added sleep times before and after OpenChest()

If Not $WeAreDead then
Sleep(GetPing()+80)
OpenChest()
Sleep(GetPing()+80)
EndIf


Updated v1.4 (4.4.19)
~Check Gold amount before merch
~Deposit/Withdraw gold to maintain balance of 50k - 60k: Deposit_Platinum()
~Adjusted CanSell function so it wont sell lockpicks, ecto, or shards by accident


Updated v1.5 (8.2.19)
~Updated GWA2 & Headers
~Updated Target Chest
~Added option to use "I AM UNSTOPABLE" skill #3
~Changed UseSkill() function to improved UseSkillEx() function
Attached Images
File Type: png GUI Boreal Chest.png (7.3 KB, 90 views)
File Type: png GUI Boreal Chest_2.png (12.4 KB, 94 views)
Attached Files
File Type: zip 2019 Boreal Chest Runner v1.5.zip (55.1 KB, 181 views)
RiflemanX is offline  
Thanks
9 Users
Old 08/02/2019, 19:21   #1289
 
oneshout's Avatar
 
elite*gold: 0
Join Date: Dec 2017
Posts: 385
Received Thanks: 294
Quote:
Originally Posted by RiflemanX View Post
2019 Boreal Chest Runner v1.5

working just...perfectly a must have
oneshout is offline  
Old 08/02/2019, 23:15   #1290
 
Tamina22300's Avatar
 
elite*gold: 0
Join Date: Jun 2014
Posts: 54
Received Thanks: 1
I've tried Vanguard, Dwarven, not Norn, I try it during this night and come back here if another error coming.
Tamina22300 is offline  
Reply


Similar Threads Similar Threads
Last Chaos GuardianS - New 2019 Server (Opening 12 January 2019)
01/27/2019 - Last Chaos Private Server - 180 Replies
https://www.youtube.com/watch?v=kCfwdUoPHu0 Website Coming Soon Server Information Start level :1 Max level:165 Experience:x2 Skill Points:x3
[Selling] Microsoft Office Professional Plus 2019 / Microsoft Office Home and Business 2019
12/05/2018 - Trading - 0 Replies
Topic Zahlung nur per PayPal. Angebote einfach unter dem Thread.



All times are GMT +2. The time now is 14:23.


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.