GW Working Bots 2019!

07/30/2019 20:18 random/#1276
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 : [Only registered and activated users can see links. Click Here To Register...]

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
07/30/2019 21:44 oneshout#1277
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 : [Only registered and activated users can see links. Click Here To Register...]

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 [Only registered and activated users can see links. Click Here To Register...] from NiliyaFlamme and it is in a RAR file, not a zip... you need Winrar to open it (tested and it open without problem)
07/31/2019 20:09 Tamina22300#1278
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 ~
07/31/2019 20:13 oneshout#1279
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 [Only registered and activated users can see links. Click Here To Register...] by Coaxx123 ?
07/31/2019 20:19 Tamina22300#1280
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 [Only registered and activated users can see links. Click Here To Register...] by Coaxx123 ?
Mdr, bon je sais que mon Anglais est approximatif mais bon j'avais compris la phrase :D

Je vais essayer avec le nouvel update, merci bien ♥
07/31/2019 20:22 oneshout#1281
Quote:
Originally Posted by Tamina22300 View Post
Mdr, bon je sais que mon Anglais est approximatif mais bon j'avais compris la phrase :D

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.
08/01/2019 21:52 Coaxx123#1282
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
08/02/2019 09:18 n0futur3#1283
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
08/02/2019 09:23 mhaendler#1284
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 xxx 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
08/02/2019 09:50 Coaxx123#1285
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 xxx 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 :)
08/02/2019 15:06 Tamina22300#1286
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 [Only registered and activated users can see links. Click Here To Register...] 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.
08/02/2019 16:50 oneshout#1287
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
08/02/2019 17:07 RiflemanX#1288
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
08/02/2019 19:21 oneshout#1289
Quote:
Originally Posted by RiflemanX View Post
2019 Boreal Chest Runner v1.5

working just...perfectly ;) a must have
08/02/2019 23:15 Tamina22300#1290
I've tried Vanguard, Dwarven, not Norn, I try it during this night and come back here if another error coming.