Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Aion
You last visited: Today at 16:12

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

Advertisement



offsets update for AionScript

Discussion on offsets update for AionScript within the Aion forum part of the MMORPGs category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: Mar 2014
Posts: 220
Received Thanks: 37
offsets update for AionScript

Hi everyone!
Somebody here have a knowledge about offsets update for cheats?
Just I cannot figure out with pointers personally.

For example, dialog collection pointer for latest GameForge client

PHP Code:
  <DialogCollection>
    <Array>
EC1948</Array>
    <
Size>700</Size>
    <
Validate>E4</Validate>
  </
DialogCollection
_iBase is game.dll library

And the code from AionScript that work with this data:

PHP Code:
public DialogList Update()
        {
            
lock (_hDialogList)
            {
                if (
this == Game.DialogList && (_hDialogList.Count == || _iUpdateTime Game.Time()))
                {
                    
ProcessCommunicationPointer processCommunicationPointer Game.Process[_iBase Game.Resolver["DialogCollection"]["Array"].Value].ToBuffered(Game.Resolver["DialogCollection"]["Size"].Value);
                    for (
uint num 0unum Game.Resolver["DialogCollection"]["Size"].Value Game.Process.PointerSizenum += 1u)
                    {
                        
ulong pointer processCommunicationPointer.GetPointer(Game.Process.PointerSize num);
                        if (!
_hDialogAddress.Contains(pointer) && pointer != 0uL && (Game.Process.GetString(pointer Game.Resolver["DialogCollection"]["Validate"].Value4uMessageHandlerString.ASCII) == "Vera" || Game.Process.GetString(pointer Game.Resolver["DialogCollection"]["Validate"].Value8uMessageHandlerString.ASCII) == "MYRIADPR"))
                        {
                            
Dialog item = new Dialog(_iBasepointernumnull);
                            
_hDialogList.Add(item);
                            
_hDialogAddress.Add(pointer);
                        }
                    }
                    
_hDialogList.Sort();
                    
_iUpdateTime Game.Time() + 1000u;
                }
            }
            return 
this;
        } 
If try to use Game.dll+EC1948 as a pointer in CheatEngine, then click on "browse this memory region" we can see there this :



If just add Game.dll+EC1948 as simple memory address, then we can see this:



Im not sure, but this is entry point in static area?

-----------------------------------------------------------------

My problem is simple, I cannot find something something similar in 4.8.1 game client :\

okay, i think i found how to find pointers
jfso is offline  
Old 06/29/2015, 11:55   #2
 
usernamenotfound's Avatar
 
elite*gold: 0
Join Date: Feb 2015
Posts: 19
Received Thanks: 2
Quote:
Originally Posted by jfso View Post
Hi everyone!
Somebody here have a knowledge about offsets update for cheats?
Just I cannot figure out with pointers personally.

For example, dialog collection pointer for latest GameForge client

PHP Code:
  <DialogCollection>
    <Array>
EC1948</Array>
    <
Size>700</Size>
    <
Validate>E4</Validate>
  </
DialogCollection
_iBase is game.dll library

And the code from AionScript that work with this data:

PHP Code:
public DialogList Update()
        {
            
lock (_hDialogList)
            {
                if (
this == Game.DialogList && (_hDialogList.Count == || _iUpdateTime Game.Time()))
                {
                    
ProcessCommunicationPointer processCommunicationPointer Game.Process[_iBase Game.Resolver["DialogCollection"]["Array"].Value].ToBuffered(Game.Resolver["DialogCollection"]["Size"].Value);
                    for (
uint num 0unum Game.Resolver["DialogCollection"]["Size"].Value Game.Process.PointerSizenum += 1u)
                    {
                        
ulong pointer processCommunicationPointer.GetPointer(Game.Process.PointerSize num);
                        if (!
_hDialogAddress.Contains(pointer) && pointer != 0uL && (Game.Process.GetString(pointer Game.Resolver["DialogCollection"]["Validate"].Value4uMessageHandlerString.ASCII) == "Vera" || Game.Process.GetString(pointer Game.Resolver["DialogCollection"]["Validate"].Value8uMessageHandlerString.ASCII) == "MYRIADPR"))
                        {
                            
Dialog item = new Dialog(_iBasepointernumnull);
                            
_hDialogList.Add(item);
                            
_hDialogAddress.Add(pointer);
                        }
                    }
                    
_hDialogList.Sort();
                    
_iUpdateTime Game.Time() + 1000u;
                }
            }
            return 
this;
        } 
If try to use Game.dll+EC1948 as a pointer in CheatEngine, then click on "browse this memory region" we can see there this :



If just add Game.dll+EC1948 as simple memory address, then we can see this:



Im not sure, but this is entry point in static area?

-----------------------------------------------------------------

My problem is simple, I cannot find something something similar in 4.8.1 game client :\

okay, i think i found how to find pointers

Get The Address Then Right-Click Scan For Pointer
Or Do It Manually Right-Click Address Then "What Writes To This .."
you will find the address needed to find the pointer + offset
then " What Access this ..." to verify it
usernamenotfound is offline  
Reply


Similar Threads Similar Threads
PWI New Offsets after the update here
01/22/2014 - PW Hacks, Bots, Cheats, Exploits - 125 Replies
New WORKING Offsets report any bug tested on: Prophet Bot Unleashed 3.0 PWI Update new edit: jump_offset 3172 Move to Corpse (Fixed) new offsets:
how to update offsets?
06/06/2010 - Dekaron - 2 Replies
need help ive tried to update offsets but only fail i cant find the array of bytes so i cant update it any help? on how and ive looked for tut's on how to but cant find any
[UPDATE] Offsets + CRC 5.4.6
01/01/2010 - Dekaron Exploits, Hacks, Bots, Tools & Macros - 55 Replies
Some of the offsets are still the same some of them are not. I will post every offset incase someone has not updated anything yet... I also uploaded CRC for 5.4.6 . Only use CRC if you use edited CSV files. Place CRC in 2moons/bin.. ENJOY... :awesome: Vac 1 : 0045C74E Vac 2 : 0053D055 Vac 3 : 0053D06A Vac : 0045C66D ( This is the same for Crespo Dungeon no crash Vac) No aggro : 0053D06A Drako vac : 005F3513 & 005B7751 Speed hack : 007E811A Mob speed : 0053E090
Update Offsets
12/14/2009 - Dekaron - 3 Replies
Can anyone help me updating my offsets for my CE hack? It way to complicated for me. PM ME and ill send u my msn
New offsets as Aug. update please!
08/26/2006 - Final Fantasy XI - 0 Replies
I need new offsets for MrWildRabbit and MrARGUS please and thank you! (b^^)b



All times are GMT +2. The time now is 16:12.


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.