Writing hardcoded values
Some hacks needs to output hardcoded values to Liero.exe. This is very easy to do.
An example hack:
Signed blow away :WEAP
This hack makes the weapon blow away settings signed
-
<6C90>98999090
<6CC8>98999090
<68CC>98999090
<690B>98999090
|
The '98999090' is values that this hack outputs to four places in Liero.exe. The values are written in hex, and you see that it is very easy to write hardcoded values since you just have to write them somewhere in the hack file.
If you need to write a string to Liero.exe you can enclose it between two ' " ' characters. The special characters 'åäöÅÄÖ' are converted to the correct DOS characters.
For example:
This is used to restore the string "Reloading...".
Next...
|