Search found 1 match

by Isaakk
Wed Jun 18, 2014 4:57 pm
Forum: MicroMacro general & support
Topic: Updated Micromacro from 0.9.4 and now script does not work.
Replies: 1
Views: 2662

Updated Micromacro from 0.9.4 and now script does not work.

This function does not work like before


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

It says that number expected but got string, then I changed to


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


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

some help to being able to read memory adress?