GW Working Bots 2019!

03/27/2020 13:21 mrcrew#1711
i have worked on vaettir bot and its working but testing atm i will update with file soon.
03/29/2020 22:29 kendor#1712
I always like PvEvolved but I haven't seen anyone working on that for a bit now.
04/06/2020 12:36 cha_cha#1713
Hey.
I downloaded the 2019 Vaettir Basic Bot. Compiled it in AutoIt, but when I run it while I have GW running, nothing happens. It's stuck at Initializing, and nothing else happens. Am I doing something wrong?

Thanks in advance!
04/06/2020 14:40 NiliyaFlamme#1714
Quote:
Originally Posted by cha_cha View Post
Hey.
I downloaded the 2019 Vaettir Basic Bot. Compiled it in AutoIt, but when I run it while I have GW running, nothing happens. It's stuck at Initializing, and nothing else happens. Am I doing something wrong?

Thanks in advance!
bots dont work cus no new gwa2
04/09/2020 20:26 martyn12444#1715
Quote:
Originally Posted by mrcrew View Post
i have worked on vaettir bot and its working but testing atm i will update with file soon.
Best of luck. Would be nice to have it before the Sweet Treats week ends!
04/17/2020 11:07 wolf_of_the_north#1716
Hey guys,
I will have a bit more time in may and would like to get into bot programming for gw1.
I know autoit well enough to tweak the bots i used (when they were working) a little. I have some experience with python and wouldn't mind learning c/c++.

My question is what is the best way to program bots so that they don't fucked when the headers are changed? And how do I start/find resources that teach me how to program a bot this way? I believe GWAC++ is suitable, but while there are examples I am not sure how to go about programming a bot. Does anyone perhaps have an old example bot (no matter how simple or bad it is)? Help would be much appreciated.

Stay healthy guys.
04/17/2020 14:27 Nachico#1717
Quote:
Originally Posted by wolf_of_the_north View Post
Does anyone perhaps have an old example bot in c/c++ for gw1 (no matter how simple or bad it is)? Help would be much appreciated.

Stay healthy guys.
Interested in this aswell
04/17/2020 23:35 list comprehension#1718
Quote:
Originally Posted by wolf_of_the_north View Post
Hey guys,
I will have a bit more time in may and would like to get into bot programming for gw1.
I know autoit well enough to tweak the bots i used (when they were working) a little. I have some experience with python and wouldn't mind learning c/c++.

My question is what is the best way to program bots so that they don't fucked when the headers are changed? And how do I start/find resources that teach me how to program a bot this way? I believe GWAC++ is suitable, but while there are examples I am not sure how to go about programming a bot. Does anyone perhaps have an old example bot (no matter how simple or bad it is)? Help would be much appreciated.

Stay healthy guys.
CTOS packet logger like Dermoench14's after running a test script for header functionality. Any packets that fail or cause a crash you know to look at manually and update. For function and data struct locations you could set logging after each pattern search that finds the address and valid pointer.

In regard to a C++ example there is older outdated gwca versions on the net. If you mean simpler than that you have to be more clear as there is a wide variety of bot tiers.

Examples:

1. Macro based, simple pixel clicking, and keyboard input can be done in pure c++ just as autoit.

2. Memory Based external, think TT6 where you use simple readprocessmemory calls to get information for more informed decisions and then use writeprocessmemory or macro functions to take action.

3. Hybrid of the previous combos.

4. Internal hack, usually done through an injected .dll that can be as simple as memory offsets and combos of the previous to fully calling engine functions for the game.

5. Clientless hack, full standalone program that isn't the game client that directly interacts only with network traffic.

6. Hybrid variations of all of the above and other methods.
04/17/2020 23:41 I Am Polywag#1719
any working kilroy bot?
04/18/2020 17:02 GrimRevenge#1720
Quote:
Originally Posted by list comprehension View Post
CTOS packet logger like Dermoench14's after running a test script for header functionality. Any packets that fail or cause a crash you know to look at manually and update. For function and data struct locations you could set logging after each pattern search that finds the address and valid pointer.

In regard to a C++ example there is older outdated gwca versions on the net. If you mean simpler than that you have to be more clear as there is a wide variety of bot tiers.

Examples:

1. Macro based, simple pixel clicking, and keyboard input can be done in pure c++ just as autoit.

2. Memory Based external, think TT6 where you use simple readprocessmemory calls to get information for more informed decisions and then use writeprocessmemory or macro functions to take action.

3. Hybrid of the previous combos.

4. Internal hack, usually done through an injected .dll that can be as simple as memory offsets and combos of the previous to fully calling engine functions for the game.

5. Clientless hack, full standalone program that isn't the game client that directly interacts only with network traffic.

6. Hybrid variations of all of the above and other methods.
thanks this is super helpful. I tried looking around for the CTOS packet logger but couldn't find it. Do you have a link?
04/18/2020 23:34 list comprehension#1721
Quote:
Originally Posted by GrimRevenge View Post
thanks this is super helpful. I tried looking around for the CTOS packet logger but couldn't find it. Do you have a link?
[Only registered and activated users can see links. Click Here To Register...]
04/21/2020 19:38 GrimRevenge#1722
Quote:
Originally Posted by list comprehension View Post
[Only registered and activated users can see links. Click Here To Register...]
Thanks!
04/21/2020 20:38 s4fjoker#1723
Quote:
Originally Posted by I Am Polywag View Post
any working kilroy bot?
Can post a kilroy later tonight
04/22/2020 05:41 s4fjoker#1724
here ya go

/e fixed the start no error now
04/22/2020 14:46 LOAREN#1725
Quote:
Originally Posted by s4fjoker View Post
here ya go
[Only registered and activated users can see links. Click Here To Register...]