i was wanting to know what would i have to learn to make bots that run in the background
the main language i use is vb6
the main language i use is vb6
well that is what i actual ment was proxy bot hahaQuote:
Your best bet would be to move to a more advanced language.
For background actions you really only have 2 main options.
Memory based bot. Use C++ because other languages, injecting to a running process is difficult if not impossible (it CAN be done... it's just a pain).
use memory offsets + scripts to control actions.
Proxy based bot: use w/e you want. Java, C# C++ are all good options. Basically read packets being sent to/from the server and use them + scripts to control actions.
Each have their own pros and cons but if you are thinking you may want to sell the bot at some point, go with proxies. Memory based are run on the end users computer meaning regardless of your auth system/account servers... you WILL end up having it cracked (if it's worth cracking). Proxies, the entire code is server side (depending on how you write it) and therefor it's alot harder to crack and use for free.
C++ is intimidating to alot of people (me included) plus I'm far more comfortable working with packets than memory (as I've done some pserver development... never dealt with memory based stuff) so I'd recommend the proxy option but it's really up to you.
Ooh, not that it's a huge issue but as far as I'm aware... proxies are less likely to get you in trouble with tq due to their stupid anticheat seeing as it doesn't modify the .exe or anything like that... then again from what I've read, the anti cheat is SUPER easy to disable so it's really a non-point.
Well according to others here you CAN do it in VB (I didn't suggest it simply because I've never really used vb and was under the impression that it was generally for more... simplistic things)Quote:
well that is what i actual ment was proxy bot haha
but i know some vb.net and little C#.net
but i guess i will have to see if i can find anything and read up on it to learn more about how to do the proxy bot thing