[Preview] Hero Bot

07/17/2010 15:49 ax5#1
Now it so that I have free time from work to work on elitepvpers again and now I want some of what is a bot that may come out later when it is finished this is fine right now.

Reads HP / CHI /EXP / EXP NEEDED / Injury - Bugged

What is missing is that if anyone knows how to fix sendkey in vb.net 2008 to a Direct X game Hero online, send a PM if anyone want to help, you will that help with the bot will be added on creadits :mofo:

[Only registered and activated users can see links. Click Here To Register...]

Test version will be added soon, i hop remember that this is a Visual basic 2008 .net project
07/18/2010 18:27 Omdi#2
n1 it works
07/18/2010 21:53 ax5#3
Quote:
Originally Posted by Omdihar View Post
n1 it works
what ?:mofo:
07/18/2010 22:42 christerper1#4
you should use hotkeys instead of a start button, it's easier in my opinion.

Form1:
KeyPreview = true

Form1 (KeyDown):
If e.keycode = keys.F1 Then
Start()
End If
If e.keycode = keys.F2 Then
Stop()
End If

Maybe something like that would sorta make it easier to use, just my opinion don't have to add. Or you can add it along with the start button.

Also if you are trying to send keys, shouldn't it look like this

Timer1:
'replace the underscore with a character you want.
SendKeys.Send(_)

sorry if i was suppose to PM you all this lol
07/19/2010 07:47 bulldozera#5
Don't forget to put your link it is ready ^
07/19/2010 09:13 christerper1#6
Quote:
Originally Posted by bulldozera View Post
Don't forget to put your link it is ready ^
i don't think this is ready yet.

Quote:
Reads HP / CHI /EXP / EXP NEEDED / Injury - Bugged
I would help if I knew how to get the pointers and addies. I could maybe help if this was a color-based bot, which wouldn't help much.
07/19/2010 15:29 ax5#7
Quote:
Originally Posted by christerper1 View Post
i don't think this is ready yet.



I would help if I knew how to get the pointers and addies. I could maybe help if this was a color-based bot, which wouldn't help much.
Well im using pointers so, and the only thing i need right now is sendkey to work :mofo:
07/19/2010 22:31 christerper1#8
Quote:
Originally Posted by ax5 View Post
Well im using pointers so, and the only thing i need right now is sendkey to work :mofo:
is it what i showed you in my 3rd post? and what's the problem, what's wrong with key sending.
07/19/2010 22:53 ax5#9
Quote:
Originally Posted by christerper1 View Post
is it what i showed you in my 3rd post? and what's the problem, what's wrong with key sending.
Key sending only works in Chat box in hero on in game if u try it with x to show ur wapon:mofo:
07/19/2010 23:44 **~CHAMP~**#10
nice
07/20/2010 08:53 christerper1#11
Quote:
Originally Posted by ax5 View Post
Key sending only works in Chat box in hero on in game if u try it with x to show ur wapon:mofo:
ohhh. you might want to try and go to another forum or site for some help because I don't think anyone in the hero section codes.
07/20/2010 12:32 schlat#12
Quote:
Originally Posted by ax5 View Post
Key sending only works in Chat box in hero on in game if u try it with x to show ur wapon:mofo:
Quote:
Originally Posted by christerper1 View Post
ohhh. you might want to try and go to another forum or site for some help because I don't think anyone in the hero section codes.
try to use a global keystroke and not sending it to a specific window. This is how it works with autoit (C++).

If this wont work try it with dinput (directx), but this is a lot of harder, because u must write a wrapper and inject it to the game. But if u get it u can run the bot and the game in the backround.

Another hint: check the sourcecode of the "send" command in autoit (C++) and translate it to vb.
07/20/2010 14:53 ax5#13
Quote:
Originally Posted by schlat View Post
try to use a global keystroke and not sending it to a specific window. This is how it works with autoit (C++).

If this wont work try it with dinput (directx), but this is a lot of harder, because u must write a wrapper and inject it to the game. But if u get it u can run the bot and the game in the backround.

Another hint: check the sourcecode of the "send" command in autoit (C++) and translate it to vb.
Thanks allot i will look on it.