example
Code: Select all
if FLAG = 0x##78Code: Select all
if FLAG = 0x##78
Code: Select all
math TMP = FLAGS
math TMP &= 0xff # or math TMP %= 0x100
if TMP == 0x78
...Code: Select all
TMP == 0x78Code: Select all
math TMP &= 0xDA78 # or math TMP %= 0x9C78 or math TMP %= 0x5E78
