OK I think I need one thing explained and i am set to do this stuff.
OK here goes, example from the TUT:
Quote:
So, to code a sample line in the Tweaker program text file to locate this Crash Depth
value, we would code this:
absolute,single,1BA3,Crash Depth
All that means is look for a single precision float value at location 1BA3 and name it
Crash Depth in the program listing. Pretty simple. Run the program and see the value
displayed. If the value looks weird, it probably is a Long value rather than a Single,
so you can always substritue the word "long" for "single" in the line and try it that
way. No harm is done either way because you won't have changed anything (yet). Once you
get a readable (and reasonable) value, you can be fairly certain that you have got the
right idea.
|
Where does the "1B
A3" value come from. I can understand the 1B...but (and I think its how you count hex here) get
A3?