Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > 12Sky2
You last visited: Today at 23:57

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



I can help you ! ! !

Discussion on I can help you ! ! ! within the 12Sky2 forum part of the MMORPGs category.

Reply
 
Old 06/15/2009, 08:10   #16
 
elite*gold: 0
Join Date: Jun 2009
Posts: 4
Received Thanks: 0
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 ?
e3test is offline  
Old 06/15/2009, 12:13   #17
 
elite*gold: 0
Join Date: Jun 2009
Posts: 26
Received Thanks: 1
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 ?
allanc123 is offline  
Old 06/15/2009, 12:36   #18
 
elite*gold: 0
Join Date: Jun 2009
Posts: 26
Received Thanks: 1
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
allanc123 is offline  
Old 06/15/2009, 12:51   #19
 
elite*gold: 0
Join Date: Jun 2009
Posts: 26
Received Thanks: 1
tell me pls i need bots




theres also an error says when i press compile script


Line-1:


error: cant not declare a constant
allanc123 is offline  
Old 06/15/2009, 14:24   #20
 
elite*gold: 0
Join Date: Jun 2009
Posts: 4
Received Thanks: 0
teh code work for me
e3test is offline  
Old 06/15/2009, 15:13   #21
 
elite*gold: 0
Join Date: Jun 2009
Posts: 26
Received Thanks: 1
did u made a bot?
allanc123 is offline  
Old 06/15/2009, 18:28   #22
 
Deadman88's Avatar
 
elite*gold: 20
Join Date: Aug 2008
Posts: 1,227
Received Thanks: 132
can u make video how to make bot?
Deadman88 is offline  
Old 06/16/2009, 02:40   #23
 
elite*gold: 0
Join Date: Feb 2008
Posts: 23
Received Thanks: 1
How do i update the hp and mp address...
Eternalz101 is offline  
Old 06/16/2009, 03:44   #24
 
elite*gold: 0
Join Date: Mar 2006
Posts: 4
Received Thanks: 0
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
azndan is offline  
Old 06/16/2009, 09:00   #25
 
elite*gold: 0
Join Date: May 2007
Posts: 336
Received Thanks: 13
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
botmasterek is offline  
Old 06/16/2009, 22:26   #26
 
elite*gold: 0
Join Date: Jun 2008
Posts: 25
Received Thanks: 2
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
puhderbär is offline  
Old 06/18/2009, 11:18   #27
 
tri407tiny's Avatar
 
elite*gold: 0
Join Date: Feb 2008
Posts: 620
Received Thanks: 272
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)
tri407tiny is offline  
Old 06/29/2009, 00:18   #28
 
elite*gold: 0
Join Date: May 2008
Posts: 19
Received Thanks: 0
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?
kringe is offline  
Old 06/29/2009, 01:34   #29
 
tri407tiny's Avatar
 
elite*gold: 0
Join Date: Feb 2008
Posts: 620
Received Thanks: 272
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
tri407tiny is offline  
Old 07/18/2009, 04:34   #30
 
elite*gold: 0
Join Date: Jan 2007
Posts: 19
Received Thanks: 9
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.....
CrownPrincian is offline  
Reply




All times are GMT +1. The time now is 23:57.


Powered by vBulletin®
Copyright ©2000 - 2026, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2026 elitepvpers All Rights Reserved.