United Hackprogrammers Front(UHF)-CO2 Memory Tables

06/08/2007 07:41 joek#46
Quote:
Originally posted by anantasia@Jun 8 2007, 00:56
Here is new HP/MANA address for new patch 4351
Cool, great work anantasia !

I've tested and added them to ver 3 of the 4351 table.
06/08/2007 08:56 anantasia#47
This address may using in SV. I will change it when new SV out.

Anyway TQ protect in code segment area for writing. So you can't write (change zoom or speed hack anymore).

So you need to modify your conquer.exe and change permit for read/write/execute all code/data/table
06/08/2007 11:00 joek#48
Quote:
Originally posted by anantasia@Jun 8 2007, 14:56
This address may using in SV. I will change it when new SV out.

Anyway TQ protect in code segment area for writing. So you can't write (change zoom or speed hack anymore).

So you need to modify your conquer.exe and change permit for read/write/execute all code/data/table
Yup it appears they actually found a programmer who can program his way out of the proverbial wet paper bag, I'm so scared; lets all pack up our disassemblers and run away, lol or we could alway just get out our :axe:

Heres to you TQ :uglyno:
06/08/2007 22:50 ZeRo-ToLeRaNcE#49
here are a few new adressess:

Code:
CHARACTERNAME=&H55527C
ACCOUNTID=&H55B6D8
SPOUSE=&H555A78
GUILDLEADER=&H555DF0
SERVER=&H55B5CC
CHARACTERLEVEL=&H555DC0
STRENGTH=&H555A88
AGILITY=&H555A90
VITALITY=&H555A94
PING=&H558E6C
MAPID=&H55C040
KILLCOUNTER=&H58132C
MAPNAME=&H55C258
XPCOUNTER=&H555A9C
JOBID=&H555DB4 
XCOORDINATE=&H555330
YCOORDINATE=&H555334
CPS=&H555FE8
I'm still looking for the new Arrow DMA defeat and Experience
somebody has that adressess or DMA defeat?

Greets

DyNy
06/16/2007 19:08 ZeRo-ToLeRaNcE#50
Hello people!

I have found the adress for the arrowcount!!

adress is: &H55622C at offset 46

My Tool is now up to date :-)

Greets,

DYNy
06/17/2007 00:45 ZeRo-ToLeRaNcE#51
Hello Joek!

I have your file modified, and put the arrowcount adress with offset in it!
you can change your file to.

Its Rev.4 :cool:

Greets,

DyNy

*Edit - by a1blaster
File removed, just post the addresses, let joek update the files in thread.*
06/22/2007 22:51 ZeRo-ToLeRaNcE#52
he Joek!

Im looking for the memoryadress to read the EXP.
do you have that adress? or what kind of type is it?
float or double or maby 4-byte read?

i have search with cheat engine, but i cant find the EXP.

that number for example: 54.432% +1376

greets,

DyNy
06/25/2007 15:33 joek#53
Quote:
Originally posted by DyNy28@Jun 23 2007, 04:51
he Joek!

Im looking for the memoryadress to read the EXP.
do you have that adress? or what kind of type is it?
float or double or maby 4-byte read?

i have search with cheat engine, but i cant find the EXP.

that number for example: 54.432% +1376

greets,

DyNy
Sorry for the delay man I haven't been around much.
Raw XP is on &H555DDC(4 bytes)
Don't know about the xp% I calculate it.

Full table is on the way soon !
06/25/2007 16:13 joek#54
[img]text2schild.php?smilienummer=1&text=Full 4351 table now out' border='0' alt='Full 4351 table now out' />
06/27/2007 18:58 yokoyoko#55
hi all sry to intrude into the highly intellectual conversion but i just need a little suggestion. I've been memory reading for a while with ahk (with ColdStart's help) but i mess up a lot and feel really shaky at this. I only place that i've learned the slighted thing about memory reading is with Coldstart's post which is very brief. Anyone of you guys can point out a good place to learn more detailed things about memory reading? (like somewhere on microsoft.com? dunno lol :( )
06/27/2007 20:22 beta.services#56
firstly, i would like to say that i have read most of this thread and all of the one that came before it. Great work so far :D Hope you all keep it up.

I am working on my own application, but unlike the rest of you, or so it seems, I am writing mine in C# - actually its my first C# program or .NET app for that matter.

My question is : how do you convert the 4 byte values (are they floats?) to an int?

the only sample code ive found so far is
BitConverter.ToSingle(memVal, 0);

That compiles but crashes the app, and the debugger as well :S

Any help wold be great, even some sample vb code to do it.

Thanks.
06/28/2007 20:59 ZeRo-ToLeRaNcE#57
sorry dude!

i write my program in Visual Studio VB.NET 2005

i can help you at this moment
06/29/2007 15:30 beta.services#58
can anyone tell me how many bytes for the char effects?
and anyone feeling extra generous - what do i set it to for dh cyclone?

thanks

<hr>Append on Jun 29 2007, 15:49<hr>
Quote:
Originally posted by DyNy28@Jun 28 2007, 20:59
sorry dude!
NP man, thanks anyway.
Turns out i didn't fully understand how the memory addresses were working or how to read the bytes. its all working now. and some code samples for anyone working in C#

using System;
using System.Runtime.InteropServices;
using System.Text

// I am assuming that you already have the concept of the readProcessMemory() function.
// you will need the byte array and other variables
byte[] memory;
int bytesReadIn;
string result;

// To read a String from a 16 byte array. - the actual address for the character name, btw.
memory = processReader.ReadProcessMemory((IntPtr)005591676, 16,out bytesReadIn);
result = "";
for (int i=o; i < bytesReadIn; i++) {
result = result + Convert.ToChar(int32.Parse(memoru[i].ToString())).ToString();
}

// the bit i got stuck on, was converting the numeric values. a 1 byte is fine (i think) a 2 byte is converted form an Int16, a 4 byte is converted from an Int32 and so on..
// the silvers being carried
memory = processReader.ReadProcessMemory((IntPtr)5595108,4, out bytesReadIn);
// 4 bytes, so its an Int32
result = System.BitConverter.ToInt32(memory, 0).ToString();


I hope these little bits of code helps someone else in the future.

<hr>Append on Jun 29 2007, 15:57<hr> oh, and for converting the values in this thread for ones you can use in C# this site helps. [Only registered and activated users can see links. Click Here To Register...] - I have only got this working in C# using the Decimal values of the addresses provided. -> although I have been adding in the 00 in front of the address - am i doing this wrong? well... its working so i guess not.
06/30/2007 14:29 Emmanuel#59
lol
07/01/2007 06:17 *M*#60
Quote:
Originally posted by joek@Jun 25 2007, 16:13
[img]text2schild.php?smilienummer=1&text=Full 4351 table now out' border='0' alt='Full 4351 table now out' />
My app uses this now with a few added addresses

SpouseName=&H555A78
Silver=&H555FE4
CPs=&H555FE8
XPSkillCounter=&H555A9C

Thanks for all the VB help too joek :cool: