I have a pretty good macro I have worked on and am about to publicly release it when I get the last part down (I have a script in ACTool and AutoIT both are the same macro). The problem I have ran into is editing the memory as I want to add teleport hack to the macro (works on 2.1.3 private servers).
The problem I am having is in ACTool (I prefer a solution for this tool, but like I said I have the same macro coded in AutoIT as well) I cannot get it to edit a float type memory address....
here is a snippet from the macro:
Code:
CONSTANTS
XAddress = 045F0B88
XOffset = 20
XTemp = NoValue
END
Code:
PROCEDURE Teleport
ReadMemory XTemp =
Loop
INC XTemp
END
SetMemory ,
END
I have also tried ReadMemoryEx (BUT THERE IS NO FLOAT...JUST BYTE, EXTENDED, COMP, etc.)
Anyone have any suggestions/ideas?