Skip to content

Releases: AndroidModLoader/GTA_CLEO_IntOperations

Initial Release

25 Dec 21:45
Compare
Choose a tag to compare

This thing adds new opcodes for logical operations such as AND/OR/NOT/byte flags and more!

If you want to use those opcodes in your CLEO scripts, add those lines to the file data/sa_mobile/SASCM.ini if you're using SannyBuilder3:

; CLEO 4 IntOperations
0B10=3,%3d% = %1d% AND %2d%
0B11=3,%3d% = %1d% OR %2d%
0B12=3,%3d% = %1d% XOR %2d%
0B13=2,%2d% = NOT %1d%
0B14=3,%3d% = %1d% MOD %2d%
0B15=3,%3d% = %1d% SHR %2d%
0B16=3,%3d% = %1d% SHL %2d%
0B17=2,%1d% &= %2d%
0B18=2,%1d% |= %2d%
0B19=2,%1d% ^= %2d%
0B1A=1,~ %1d%
0B1B=2,%1d% %= %2d%
0B1C=2,%1d% >>= %2d%
0B1D=2,%1d% <<= %2d%