Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > 12Sky2 > 12Sky2 Hacks, Bots, Cheats & Exploits
You last visited: Today at 17:42

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

Advertisement



[Release][Method]Aeria - 100% Autopill

Discussion on [Release][Method]Aeria - 100% Autopill within the 12Sky2 Hacks, Bots, Cheats & Exploits forum part of the 12Sky2 category.

Reply
 
Old   #1

 
Mega Byte's Avatar
 
elite*gold: 0
Join Date: Dec 2009
Posts: 1,776
Received Thanks: 1,003
[Release][Method]Aeria - 100% Autopill

Assumed use of cheat engine.
I will not explain in detail as I am currently updating map fun with this


FOR THOSE OF YOU WHO DO NOT UNDERSTAND THIS PLEASE DO NOT ASK QUESTIONS.
Learn cheat engine and some asm please


Find autopill autopillhp and autopill chi addresses.

AutoPill: 10AB374
AutoPillHP: 10AB378
AutoPillCHI: 10AB37C

The addresses were off set - 0x20 from last patch
The addresses for code were offset + 0x30 from last patch


Set Autopill to 1 and HP to 5.

Find what accesses AutoPillHP
You will see a few entrys we want the one that compares against 5 the others are just checking if its set to something above 0 etc.

Code:
004BAFA8  |.  833D 78B30A01>CMP DWORD PTR DS:[10AB378],5
Becomes
004BAFA8      833D 78B30A01>CMP DWORD PTR DS:[10AB378],0A

We have to change the 05 to 0A for 100% as it has an imul eax further down and converts it to a % out of 100.

Anyway.

Scrolling down in the code window we can also see another cmp 05 for chi

Code:
004BB0C1  |.  833D 7CB30A01>CMP DWORD PTR DS:[10AB37C],5
Change this to 0A again
Becomming
004BB0C1      833D 7CB30A01>CMP DWORD PTR DS:[10AB37C],0A
*NOTE: I hope that you understand 0A is hex for 10*
Now when we set the autopill address to 1 or 100 etc and the hp and chi values to 10 we actually have 100% autopill.

Now for the "fancy" hax.
We have to prevent the game from altering our auto pill or chi / hp values because it figures out eventually *on update packet from server i think* that we have not got the autopill and turns it off.

Set our AutoPill address to 10 or w/e
Find what writes to our AutoPill address.
Trigger it to change by either fighting and waiting or using a portal. I used a portal.


The very first address that changes it is moving ecx into our address opening it in the code window we see this.

Quote:
00407602 |. 890D 74B30A01 MOV DWORD PTR DS:[10AB374],ECX
00407608 |. 837D FC 00 CMP DWORD PTR SS:[EBP-4],0
0040760C |. 75 14 JNZ SHORT TwelveSk.00407622
0040760E |. C705 78B30A01>MOV DWORD PTR DS:[10AB378],0
00407618 |. C705 7CB30A01>MOV DWORD PTR DS:[10AB37C],0
Ignoring the cmp and the jne we can clearly see that the three moves set our values to 0...
WE DO NOT WANT THIS!
so nop away! our code becomes this.

Auto Pill On
Code:
Origionaly
00407602  |.  890D 74B30A01 MOV DWORD PTR DS:[10AB374],ECX
Changed to
00407602      90            NOP
00407603      90            NOP
00407604      90            NOP
00407605      90            NOP
00407606      90            NOP
00407607      90            NOP
HP and CHI values.
Code:
Origionaly
0040760E  |.  C705 78B30A01>MOV DWORD PTR DS:[10AB378],0
00407618  |.  C705 7CB30A01>MOV DWORD PTR DS:[10AB37C],0
Changed to
0040760E      90            NOP
0040760F      90            NOP
00407610      90            NOP
00407611      90            NOP
00407612      90            NOP
00407613      90            NOP
00407614      90            NOP
00407615      90            NOP
00407616      90            NOP
00407617      90            NOP
00407618      90            NOP
00407619      90            NOP
0040761A      90            NOP
0040761B      90            NOP
0040761C      90            NOP
0040761D      90            NOP
0040761E      90            NOP
0040761F      90            NOP
00407620      90            NOP
00407621      90            NOP

By the way! for anyone who is interested in checking there is an auto pill function here
004BAB70 /$ 55 PUSH EBP
Which checks further down for your action. Eg if you are dead or stunned etc it will not auto pill.
I wonder what happens if we force it to autopill and set state to 1 on death LOL
Mega Byte is offline  
Thanks
11 Users
Old 03/13/2010, 09:30   #2
 
elite*gold: 0
Join Date: Jul 2008
Posts: 34
Received Thanks: 4
Great job dude

it can save some cycles since u dont have to keep written the autopot values(a.ka. freeze em), i hated that of my autopot (you know the code efficiency freak in me).

Btw is there any chance you can share the code ofyour mob finder, im really eager to do some stuff with it, if u cant or wont its cool.


Thanx and keep up the great work
rhotar is offline  
Old 03/13/2010, 09:47   #3

 
Mega Byte's Avatar
 
elite*gold: 0
Join Date: Dec 2009
Posts: 1,776
Received Thanks: 1,003
im not sure lol add me on msn *megabyte at nzgames.net.nz* and we can talk
Mega Byte is offline  
Old 03/13/2010, 10:07   #4
 
Cymon's Avatar
 
elite*gold: 0
Join Date: Nov 2009
Posts: 94
Received Thanks: 4
I wonder why aeria even bothered with thiss patch, all the hacks are getting updated.
atleast by u megabyte
Cymon is offline  
Old 03/14/2010, 02:52   #5
 
elite*gold: 0
Join Date: May 2009
Posts: 33
Received Thanks: 0
good job xD
sascha22 is offline  
Old 03/14/2010, 03:30   #6
 
elite*gold: 0
Join Date: Apr 2007
Posts: 649
Received Thanks: 105
Quote:
Originally Posted by Cymon View Post
I wonder why aeria even bothered with thiss patch, all the hacks are getting updated.
atleast by u megabyte
Um, it was an update patch. It had nothing to do with hacks. Aeria bothered with the patch because they added new content, mainly being new level cap AKA *** levels.

Anyways good job as always Megabyte.
Iktov is offline  
Old 03/18/2010, 02:28   #7
 
matrix17's Avatar
 
elite*gold: 0
Join Date: Jun 2005
Posts: 34
Received Thanks: 13
can help me on how to find what accesses AutoPillHP? Not so much familiar with olly.
matrix17 is offline  
Old 03/18/2010, 02:32   #8
 
elite*gold: 0
Join Date: Apr 2007
Posts: 649
Received Thanks: 105
Quote:
Originally Posted by matrix17 View Post
can help me on how to find what accesses AutoPillHP? Not so much familiar with olly.
Put AutoPillHP address into CE. Right click on the address and select "find out what accesses this address". Then go in-game and lose some health with Autopill enabled so that the Autopill does it job: It autopills. You see what you need to see then.
Iktov is offline  
Thanks
1 User
Old 03/21/2010, 08:38   #9

 
Mega Byte's Avatar
 
elite*gold: 0
Join Date: Dec 2009
Posts: 1,776
Received Thanks: 1,003
yep and then just look at my above stuff and go insane for a minute or two then you will realise what you can do
Mega Byte is offline  
Old 03/23/2010, 12:20   #10
 
elite*gold: 0
Join Date: Jul 2009
Posts: 31
Received Thanks: 1
thaaaaanx man u hve speed and attack agine
taaaaazq8 is offline  
Old 03/25/2010, 23:31   #11

 
Mega Byte's Avatar
 
elite*gold: 0
Join Date: Dec 2009
Posts: 1,776
Received Thanks: 1,003
Updated for new patch!
Mega Byte is offline  
Old 03/26/2010, 02:09   #12
 
elite*gold: 0
Join Date: Mar 2010
Posts: 42
Received Thanks: 10
Im trying to do this with autoit but i just cant get the code quite right. If someone could post the code for this i would be more than appreciative =)
Hafus is offline  
Old 03/26/2010, 17:18   #13

 
Mega Byte's Avatar
 
elite*gold: 0
Join Date: Dec 2009
Posts: 1,776
Received Thanks: 1,003
use C#... there are code samples on the net for WriteProcessMemory tutorials.

You just have to write the bytes i change into those addresses. Mainly 0x90 0x90 into two places.

You should be able to do it in autoit but it would be better to learn C# for commercial and mucking about
Mega Byte is offline  
Old 03/27/2010, 23:33   #14
 
elite*gold: 0
Join Date: Mar 2010
Posts: 42
Received Thanks: 10
Thanks Mega Byte, Im pretty familiar with C++ and coding in general as its my hobby and career. Ill look into it though! Thanks again

-Hafus
Hafus is offline  
Old 03/30/2010, 22:26   #15

 
Mega Byte's Avatar
 
elite*gold: 0
Join Date: Dec 2009
Posts: 1,776
Received Thanks: 1,003
Oh well you can use C++ also. Read up on Write Process Memory and Read Process Memory API's or inject a dll and use memcpy
Mega Byte is offline  
Reply


Similar Threads Similar Threads
[RELEASE] AERIA 12Sky2 Trainer w/ AutoPill
01/24/2010 - 12Sky2 Hacks, Bots, Cheats & Exploits - 190 Replies
12Sky2 Trainer FOR AERIA ONLY http://i46.tinypic.com/34ytlx3.png News: I am now accepting in-game donations (Redemption), or paypal donations($5 or up). Then you will have access to priority 1 update and faction changer. This also supports my work. PM me for information. V1.2.3 with attack speed up to 100% RELEASED. This is my final release. Note for Vista/Win7 Users: RUN AS ADMIN
[Release] Aeria In-Game Autopill
12/13/2009 - 12Sky2 Hacks, Bots, Cheats & Exploits - 120 Replies
Aeria In-Game Autopill Simple, yet elegant. How so? Because its awesome. Should be simple to use as well. Need any help? Post here. START TS2 FIRST BEFORE RUNNING PROGRAM!



All times are GMT +2. The time now is 17:42.


Powered by vBulletin®
Copyright ©2000 - 2024, 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 ©2024 elitepvpers All Rights Reserved.