Jump to content

Recommended Posts

Posted

Hi There,

I can't see any binary on that picture. All looks like hex to me...

Are you sure you know what binary is?

Also, post a sample script. What have you tried?

Cheers,

Brett

Posted

I'm positive, I searched cheatengine for an unknown number, found a variable that did what I wanted but wasnt a logical size, so I used cheatengines type modifier and took the second binary value from the value.

Posted (edited)

Okay, here is another question:

How can I get different data types? I have another working value but this one is a 2 Byte, I can only seem to get this working for 4 Byte value types... Here are a few things I have tried:

$p = _MemoryRead($pointer, $handle, "byte[2]")

$p = _MemoryRead($pointer, $handle, "int[16]")

$p = _MemoryRead($pointer, $handle, "2byte")

Thanks in advance!

Edited by Zinefer
Posted (edited)

Okay, here is another question:

How can I get different data types? I have another working value but this one is a 2 Byte, I can only seem to get this working for 4 Byte value types... Here are a few things I have tried:

$p = _MemoryRead($pointer, $handle, "byte[2]")

$p = _MemoryRead($pointer, $handle, "int[16]")

$p = _MemoryRead($pointer, $handle, "2byte")

Thanks in advance!

In CE;

byte == 1 byte

bytes == 2 byte

dword == 4 byte

qword == 8 byte

In _Memory.au3

byte == ubyte

bytes == ushort

dword == dword

qword == uint64

Edited by GoodMan

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...