I can help you ! ! !

06/15/2009 08:10 e3test#16
Quote:
Originally Posted by powerfear View Post
thing like hp and mp are base adress they only change if the game is updated, but if you have a normal adress you can try to find a pointer for it... If you don't even know what is a pointer then go read tutorial on CEF...
well , i can find the pointer, but it's something like P->xxxxxxx , then how to use it with the autoit code tri407tiny post ?
06/15/2009 12:13 allanc123#17
still not work how this use


i have autoit and then i have nomad i pt it in include and then


save script and i run it whats the next ?
06/15/2009 12:36 allanc123#18
also theres an error Line (File "C:\ProgramFiles\AutoIt3\Include\Nomadmemory.au3") :


Const $SE_PREVILEGE_ENABLE = 0x002



??????????????????? whats happening tell me pls im a totally noob
06/15/2009 12:51 allanc123#19
tell me pls i need bots




theres also an error says when i press compile script


Line-1:


error: cant not declare a constant
06/15/2009 14:24 e3test#20
teh code work for me :D
06/15/2009 15:13 allanc123#21
did u made a bot?
06/15/2009 18:28 Deadman88#22
can u make video how to make bot?
06/16/2009 02:40 Eternalz101#23
How do i update the hp and mp address...
06/16/2009 03:44 azndan#24
i got the script running, but no addy for hp and mp, can someone please help us find the update hp and mp address. Thank you very much
06/16/2009 09:00 botmasterek#25
Quote:
Originally Posted by powerfear View Post
Google Nomadmemory.au3 download it and place it in your include folder inside your auotit folder if its installed by default your folder is here:

C:\Program Files\AutoIt3\Include
i did but still same problem
06/16/2009 22:26 puhderbär#26
Ahm can i ask what these "bots" are for? xD Maybe i can help you. But the two "bots" are both a bit strange i cant see the usage. Maybe if i put a lot of imagination in it i can see a usage and if my result is right both are not working.^^

best regards
PuhDerBär
06/18/2009 11:18 tri407tiny#27
Wow, ok the so called USELESS BOTS have OUTDATED ADDYS, so update the addys, install the correct files, and wala the bot works, o wait whats that, your crying because you actually have to do something to get the bot to work, and not just leach(only directed to the guy who posted above me)
06/29/2009 00:18 kringe#28
Quote:
Originally Posted by tri407tiny View Post
Maybe this can help, here is my speed bot that not only heals at90% and chi heals at 40% i think but it also SPeed AOE for you , maybe you can tet/try this out, edit it, and make it your own


Code:
#RequireAdmin
#Region ;**** Directives created by AutoIt3Wrapper_GUI ****
#AutoIt3Wrapper_Res_Comment=Autopot (Mayn Mem.)
#AutoIt3Wrapper_Res_Description=Autopot (Mayn Mem.)
#AutoIt3Wrapper_Res_Fileversion=1.0.0.0.0
#EndRegion ;**** Directives created by AutoIt3Wrapper_GUI ****
#include <Nomadmemory.au3>
#include <Array.au3>
#include <memory.au3>
WinWaitActive("TwelveSky2")

Global $Paused
HotKeySet("{PAUSE}", "TogglePause")
HotKeySet("{ESC}", "Terminate")

;HP and Chi Base, editting these will change when the bot takes a pill
$ID = _MemoryOpen(ProcessExists("TwelveSky2.exe"))
$ChiAddy = 0x00B8347F
$HPAddy = 0x00B83447
$Chi = _MemoryRead($Chiaddy, $ID)
$HP = _MemoryRead($HPaddy, $ID)
$HPBase = $HP*.90
$ChiBase = $Chi*.40
;Edit these to change the percents
$SpeedAddy = 0x00B8349B


Func AOE ()	
WinActive("TwelveSky2")
Send("e") 
Sleep(100)
EndFunc ;==>AOE

Func Chi()
	SetPrivilege("SeDebugPrivilege", 1)
	$ID = _MemoryOpen(ProcessExists("TwelveSky2.exe"))
	$Address = $ChiAddy
	$Chi = _MemoryRead($Address, $ID)
	While $Chi < $ChiBase
		;Edit the value below ("2") to change the Chi pill key
		Send("w")
		Sleep(500) 
		$Chi = _MemoryRead($Address, $ID)
	WEnd
	_MemoryClose($ID)
EndFunc   ;==>Chi

Func HP()
	SetPrivilege("SeDebugPrivilege", 1)
	$ID = _MemoryOpen(ProcessExists("TwelveSky2.exe"))
	$Address = $HPAddy
	$HP = _MemoryRead($Address, $ID)
	While $HP < $HPBase
		;Edit the value below ("1") to change the HP Pill key
		Send("q") 
		Sleep(500)
		$HP = _MemoryRead($Address, $ID)
	WEnd
	_MemoryClose($ID)
EndFunc   ;==>HP
Func SpeedHackFreeze()
	SetPrivilege("SeDebugPrivilege", 1)
	$ID = _MemoryOpen(ProcessExists("TwelveSky2.exe"))
	_MemoryWrite($SpeedAddy, $ID, 200)
	While 1       
     SpeedHackFreeze()
	Wend
 _MemoryClose($ID) 
 EndFunc
While 1 
	HP()
	Chi() 
	AOE() 
WEnd

Func TogglePause()
	$Paused = Not $Paused
	While $Paused
		Sleep(100)
		ToolTip('AOE BOT "Paused"', 512, 15)
	WEnd
	ToolTip("")
EndFunc   ;==>TogglePause

Func Terminate()
	ToolTip('AOE BOT "Exiting"', 512, 15)
	Sleep(1000)
	ToolTip("")
	Exit 0
EndFunc   ;==>Terminate
removing the option to AoE would simply mean removing "e"? or would it be best to completely remove the function?
06/29/2009 01:34 tri407tiny#29
Func AOE ();==>just the name of the function i gave it in this case it was AOE since it ;pressed the AOE KEY
WinActive("TwelveSky2");==>window your waiting to be active, so you only spamm it ;when the game running
Send("e") ;==> the key the button you want to spam , in this case it was AOE
Sleep(100)==>how QUick you want to spam it
EndFunc ;==>AOE


Hope This helped
07/18/2009 04:34 CrownPrincian#30
Quote:
Originally Posted by gloaming View Post
hey tri407, need some help here, when I tried to update the addys using ur script to the latest addresses -

$ChiAddy = 00C60754
$HPAddy = 00C6074C

and then run it thru autoit an error msg pops up saying

$ChiAddy = 00C60754
$ChiAddy = ^ERROR

Error: Unable to parse line.

any idea how to fix this? Thanks :).
add 0x infront of the addresses.....