Locked Home » Forums » Hero Online » Hero Online Submissions

Hp mp bot for Hero online. : Hero Online Submissions

Posted: September 24th, 2006
meetic
Here i m submitting HP/ CHI refill bot while you are fighting mobs. Its based on the same bot that taultunleashed had published but have changed the operating part to refill hp and chi.

It will approximately heal your HP when its less than two third and give you chi refill when its less than one third.

Ofcourse it has to be used with the xtrap bypass published elsewhere on this forum. The game has to run in window mode in 1024x768 resolution. I have not tried in full screen mode but i think it should work on that as well. If not then tell me i will put an option for users. There is some prob with the welcome screen that it dont go after u press OK but leave it and play the game. Bot will work there.

Get the bot here:
http://rapidshare.de/files/34312055/hpchibot.exe
How to use this bot:
1.Use axtrap.exe published by taultunleashed.com after you start the game.
2.Put hp pots in slot 1 which approximately equals to one third of your hp bar.
3.Put chi pots in slot 2 which approximately equals two thirds of ur chi bar.

Enjoy hunting with or without attack bot which can be found elsewhere on this forum if u become a premium member.

P.S.This is basic version of hp/chi refill bot. It can be improvised further a lot like giving the users a bit of control to specify when to refill depending upon the % of hp / chi left.

Hope i get the premium membership lol. :lol:

EDIT:
1.Can admin plz come on msn or yahoo and i will give the source code file there.
2.K pmed u the the passphrase.
3.Lol as long as i get prem mem i dont mind :P. And anyway i have taken the source code base from your site only so it would be entirely wrong on my part to whine if any one else use it. BTW we can collaborate to work together on ur new bot. Pm me ur msn/yahoo id if u want to explore possibilities.
4.Well got feedback that this is not working on my friends comp. Guess the pixel color/location changes. If it works for u good. Sigh my prem mem. :P


Last edited by Guest on September 24th, 2006, 1:42 pm, edited 7 times in total.
Posted: September 24th, 2006
Total Posts:416 Joined:2006
Please Allow us to read the source so we can test it and see the code cos keyloggers are easy to make in these


EDIT: Not all the admins if any have it so can u just give me the passphrase so i can check.

Edit: Ouch... Thats alot of text. yah it looks to be clean. dun wrry m8 i wont release the Passphrase :D

Also im makeing a bot like this hehe :D im still noob with autoit. but can i use ur metod of character healing?

EDIT: How did u get the PixelSearch all working? i cant do that part im real stuck
Posted: September 24th, 2006
hottoxic
umm i suggest u post the code in public. so other can give u more comment and vote for it as well. And yet, u will get premium membership anyway.

I need to see the code otherwise i dont use it and cant vote for you yet.
Posted: September 24th, 2006
Total Posts:282 Joined:2006
I agree. post the code so we can test and vote. and just a question but why is there a passphrase? anyway until you post the code I'm sorry but its a nay. if you post and it works, I'll give it a yay.
Posted: September 24th, 2006
User avatar
administrator
Total Posts:29918 Joined:2002
agreed
Posted: September 27th, 2006
hottoxic
here's the open script for this file (http://rapidshare.de/files/34312055/hpchibot.exe ):
(If u doubt about this script, u can ask him for passphrase and look for yourself)

Code: Select all

Opt("GUIOnEventMode", 1)

Opt("WinTitleMatchMode", 2)
$Form1 = GUICreate("Auto HP/MP refill Bot 1.1", 622, 441, 192, 125)
;$Group1 = GUICtrlCreateGroup("Hero Online Auto HP/MP refill Bot", 50, 45, 546, 361)
GUICtrlSetFont(-1, 14, 800, 0, "MS Sans Serif")
$time = IniRead(@ScriptDir&"\attsetting.ini", "settings", "timer", "NotFound")
$time2 = IniRead(@ScriptDir&"\attsetting.ini", "settings", "timerpickup", "NotFound")
$potkey = IniRead(@ScriptDir&"\attsetting.ini", "settings", "potkey", "NotFound")
Dim $i
$Button1 = GUICtrlCreateButton("Start", 70, 345, 146, 51)
GUICtrlSetOnEvent(-1, "Start")
GUICtrlSetFont(-1, 14, 800, 0, "MS Sans Serif")
$Button2 = GUICtrlCreateButton("Exit", 430, 345, 146, 51)
GUICtrlSetOnEvent(-1, "Close")
GUICtrlSetFont(-1, 14, 800, 0, "MS Sans Serif")
$Edit1 = GUICtrlCreateEdit("", 105, 90, 441, 236, $ES_CENTER, $WS_EX_CLIENTEDGE)
GUICtrlSetData($Edit1, "This is the Auto HP/MP refill bot =) "&@CRLF&"Created for taultunleashed.com"&@CRLF&"make sure to fight mobs that don"&Chr(39)&"t make you loose health  "&@CRLF&""&@CRLF&""&@CRLF&""&@CRLF&""&@CRLF&"The program will approximately heal u when ur hp pots "&@CRLF&""&@CRLF&""&@CRLF&""&@CRLF&""&@CRLF&"are half and mp pots are one third.")
GUICtrlSetFont(-1, 10, 400, 0, "MS Sans Serif")
GUICtrlCreateGroup("", -99, -99, 1, 1)
GUISetState(@SW_SHOW)
While 1
	$msg = GuiGetMsg()
	Select
	Case $msg = $GUI_EVENT_CLOSE
		ExitLoop
	Case Else
		;;;;;;;
	EndSelect
WEnd
Exit

Func Start()
	#Region --- CodeWizard generated code Start ---
;MsgBox features: Title=Yes, Text=Yes, Buttons=OK, Icon=Info
;MsgBox(64,"Note..","Make sure vmware is already running .. " & @CRLF & "And make sure you are already at the spot in the game you want to bot at.." & @CRLF & @CRLF & "Script will start 10 seconds after you press OK")
#EndRegion --- CodeWizard generated code End ---
WinSetState("Auto HP/MP Bot 1.0", "", @SW_HIDE)
WinActivate("VMware Workstation", "")
Sleep(10000)
AutoItSetOption ( "Pixelcoordmode", 0 )
While 1
	If 	PixelGetColor ( 200 , 70 )= 13041664 Then
		Sleep(1000)
	Else
		Send("1")
		Opt("SendKeyDownDelay", 100)
		Sleep(1000)
	EndIf
	If 	PixelGetColor ( 150 , 85 )= 72 Then
		Sleep(1000)
	Else
		Send("2")
		Opt("SendKeyDownDelay", 100)
		Sleep(1000)
	EndIf
;Send($potkey)
;Opt("SendKeyDownDelay", 100)
;Sleep($time)
WEnd
EndFunc

Func Close()
Exit
EndFunc
If u read the script carefully, u would see that there's "attsetting.ini" needed to set the option . The "attsetting.ini" is not included in download link he posted. So no way, this .exe runs correcly as it stated.

And this code:

"#Region --- CodeWizard generated code Start ---
;MsgBox features: Title=Yes, Text=Yes, Buttons=OK, Icon=Info
;MsgBox(64,"Note..","Make sure vmware is already running .. " & @CRLF & "And make sure you are already at the spot in the game you want to bot at.." & @CRLF & @CRLF & "Script will start 10 seconds after you press OK")
#EndRegion --- CodeWizard generated code End ---"

it's simillar to the 1 that already posted in this post (http://www.taultunleashed.com/phpBB2/vi ... hp?t=35299).

So he just copied and paste other's work and put his name in the script.

So i vote Nay.
Posted: October 2nd, 2006
Total Posts:282 Joined:2006
sorry but for me any VMware is auto nay. that and we already have enough bots that refil health and chi. so yeah nay sorry. and you shouldn't steal other peoples work. that can/will get you banned if indeed you did.
Posted: October 2nd, 2006
Total Posts:416 Joined:2006
Yah hottoxic thats the identical script :D

I vote nay :(
Ready to join the community? Click here and see all of the benefits!
blue large dotWho is online
Users browsing this forum: No registered users and 7 guests
Locked