'??' statement
The '??' statement is placed in the variables part to determine if a hack is activated or not.
Syntax:
Offset: The offset to the byte to check.
Value: The value the byte should have if the hack is activated. Written in hex.
LieroHacker compares all the bytes at Offset with the Values and if any of them is different from eachother, it marks the hack as 'not activated'. If all are equal, it marks the hack as 'activated'. If a hack is activated or not is written after the hack name when the hack is selected in the hack list.
Example:
Signed blow away :WEAP
This hack makes the weapon blow away settings signed
?? 6C90 = 98
?? 6CC8 = 98
?? 68CC = 98
?? 690B = 98
-
<6C90>98999090
<6CC8>98999090
<68CC>98999090
<690B>98999090
|
This hack is marked as 'activated' if the four bytes at 0x6C90, 0x6CC8, 0x68CC and 0x690B are equal to 0x98.
|