|
You last visited: Today at 09:11
Advertisement
[5777+] Memory offsets/pointers
Discussion on [5777+] Memory offsets/pointers within the CO2 Programming forum part of the Conquer Online 2 category.
11/17/2013, 15:28
|
#16
|
elite*gold: 0
Join Date: Aug 2008
Posts: 36
Received Thanks: 2
|
phize i was wandering if you can release your bot for public use not your source...because there are many unskilled programmers as you can see that would apreciate your efforts!
|
|
|
03/03/2014, 12:34
|
#17
|
elite*gold: 0
Join Date: Feb 2014
Posts: 31
Received Thanks: 0
|
Hey how can i use those functions , i know this old functions will not work soo how to get the new one and use it?
|
|
|
03/03/2014, 13:38
|
#18
|
elite*gold: 0
Join Date: Mar 2005
Posts: 1,430
Received Thanks: 1,586
|
Quote:
Originally Posted by phize
Code:
uint ptr1 = Manager.Conquer.ReadUInt(Client.RoleManager.Local.BaseAddress + 0xAD0);
uint ptr2 = Manager.Conquer.ReadUInt(ptr1 + 0xC);
uint currentHp = Manager.Conquer.ReadUInt(ptr2);
Tested this on a a class with no MP, so you'll have to find that yourself, but just search for the value with CE and trace back from there to your CHero base address (what CHero__InstancePtr points to).
CE table attached so you can try it out for yourself.
|
using this method for reading a pointer chain is really ugly lol.
Why don't you have a function that takes a list of offsets and reads from the base address. For example
(this code has been typed directly here and not tested)
Code:
int ReadPointerChain(int BaseAddress, params int[] Offsets)
{
int current = BaseAddress;
foreach (int offset in Offsets)
{
current = ReadInt(current+offset)
}
return current;
}
int currentHp = ReadInt(ReadPointerChain(Client.RoleManager.Local.BaseAddress,0xAD0,0xC));
|
|
|
03/03/2014, 13:55
|
#19
|
elite*gold: 0
Join Date: Sep 2006
Posts: 774
Received Thanks: 8,580
|
Quote:
Originally Posted by Ultimation
using this method for reading a pointer chain is really ugly lol.
Why don't you have a function that takes a list of offsets and reads from the base address. For example
(this code has been typed directly here and not tested)
Code:
int ReadPointerChain(int BaseAddress, params int[] Offsets)
{
int current = BaseAddress;
foreach (int offset in Offsets)
{
current = ReadInt(current+offset)
}
return current;
}
int currentHp = ReadInt(ReadPointerChain(Client.RoleManager.Local.BaseAddress,0xAD0,0xC));
|
Never really thought about it, to be honest. I suppose I should add a method like that in my memory class though
|
|
|
03/03/2014, 14:05
|
#20
|
elite*gold: 0
Join Date: Feb 2014
Posts: 31
Received Thanks: 0
|
Quote:
Originally Posted by Ultimation
using this method for reading a pointer chain is really ugly lol.
Why don't you have a function that takes a list of offsets and reads from the base address. For example
(this code has been typed directly here and not tested)
Code:
int ReadPointerChain(int BaseAddress, params int[] Offsets)
{
int current = BaseAddress;
foreach (int offset in Offsets)
{
current = ReadInt(current+offset)
}
return current;
}
int currentHp = ReadInt(ReadPointerChain(Client.RoleManager.Local.BaseAddress,0xAD0,0xC));
|
can you help me?
|
|
|
03/03/2014, 14:08
|
#21
|
elite*gold: 0
Join Date: Mar 2005
Posts: 1,430
Received Thanks: 1,586
|
Quote:
Originally Posted by phize
Never really thought about it, to be honest. I suppose I should add a method like that in my memory class though 
|
just makes the code easier neater, and sometimes easier to follow.
|
|
|
03/04/2014, 11:26
|
#22
|
elite*gold: 0
Join Date: Feb 2014
Posts: 31
Received Thanks: 0
|
how to get those pointers again?
|
|
|
 |
|
Similar Threads
|
NosUK Pointers + Offsets
06/13/2013 - Nostale Hacks, Bots, Cheats & Exploits - 0 Replies
These are pointers to inventory. It only gives amount of item in slot.
Am working on trying to find item name. Don't know if anyone will find useful or not. Might be for someone making bots that need access to inventory information... Sorry if posted in wrong area. These are pointers to NostaleUK not sure if they will work on the other nostales.
007E6948 <- Item Pointer
EQ Offset Point 1c8
Main Offset Point 1cc
ETC Offset Point 1d0
|
[Release] Aion 3.1 Pointers/Offsets
05/02/2013 - Aion Hacks, Bots, Cheats & Exploits - 28 Replies
Scanned of EU with new update today
ill update the list once i get some time to find the addresses...
<?xml version="1.0" encoding="utf-8"?>
<CheatTable CheatEngineTableVersion="14">
<CheatEntries>
<CheatEntry>
<ID>2</ID>
|
[Q] C++ memory editing with pointers
04/02/2009 - C/C++ - 10 Replies
Hey there.
I used that guide which helped me a lot (Click)...
The main problem is, I tried it for another game, everytime I restart it, the address changes, so I wanted to do it with pointers.
I already searched on google, but didn't find anything rly usefull.
Please help me ;]
Thanks!
|
neue offsets/pointers... compilen? bwh/bot... etc.
01/20/2006 - World of Warcraft - 0 Replies
hi leutz
also mein frage ist
wie und woher krieg ich die aktuellen pointers/offsets
wie baue ich das z.b in bwh ein..
oder den bot... etc.
ich hoffe ihr versteht was ich will...
wenn ich es falsch gepostet habe einfach verschieben...
da sich aber meine frage mehr auf wow bezieht denke ich mal das das hier her gehört...
|
Patch 1.9 Offsets and Pointers
01/09/2006 - WoW Exploits, Hacks, Tools & Macros - 0 Replies
// WoW [Release] Build 4937 (Dec 20 2005)
// WoW!Sharp.h
#define AutoStoreAllLootItems 0x4B0E00
#define CGBuffBar__m_buffs 0xB4CF28
#define CGBuffBar__m_durations 0xB4CE10
#define CGChat__AddChatMessage 0x48DC90
#define CGGameUI__ClearTarget 0x487C50
#define CGGameUI__LeftClick 0x486A00
#define CGGameUI__RightClick 0x486C50
#define CGGameUI__m_lockedTarget 0xAF60B8
|
All times are GMT +1. The time now is 09:13.
|
|