Page 1 of 1

Updated Micromacro from 0.9.4 and now script does not work.

Posted: Wed Jun 18, 2014 4:57 pm
by Isaakk
This function does not work like before

Code: Select all

addr 	= "06DE04B4";
memoryReadInt(proc, addr);
It says that number expected but got string, then I changed to

Code: Select all

addr 	= 06DE04B4;
memoryReadInt(proc, addr);

then it says "malformed number near '06DE04B4'"

some help to being able to read memory adress?

Re: Updated Micromacro from 0.9.4 and now script does not wo

Posted: Wed Jun 18, 2014 8:24 pm
by Administrator
Addresses specified in hex need to be preceeded by 0x. You'll want to use 0x06DE04B4.