CLEO Help getting compiling error

CLEO related
Status
Not open for further replies.

davidel

Well-known member
Joined
Jan 17, 2020
Messages
207
Reaction score
7
Location
Germania
Code:
Opcode 0B12 is not found in the standard opcodes and current script extensions.

Add directive {$USE <extension_name>} at the top of the script.

List of available extensions: default, CLEO+, newOpcodes, CLEO, file, bitwise, ini.

why? fresh 0.3.7, fresh cleo 4.1, gta_sa US, sampfuncs last, sampfuncs files sdk
idk why i am getting this
 

ajom

Well-known member
Joined
Apr 14, 2020
Messages
389
Solutions
2
Reaction score
271
Location
Pluto
Code:
Opcode 0B12 is not found in the standard opcodes and current script extensions.

Add directive {$USE <extension_name>} at the top of the script.

List of available extensions: default, CLEO+, newOpcodes, CLEO, file, bitwise, ini.

why? fresh 0.3.7, fresh cleo 4.1, gta_sa US, sampfuncs last, sampfuncs files sdk
idk why i am getting this
Latest SANNY Builder have external opcode extension support. So you what you need to do is:
  1. Open <SANNY BUILDER Directory>\data\sa\extensions.txt using notepad
  2. Find word 0B12
  3. Now you will see 0B12=<required header>.
  4. Put at the top of your script:
Code:
{$USE <required header>}
  • Where the required header is the name of the header you just found beside opcode 0B12

Or you can Add all this headers at the top of your script:
Code:
{$USE CLEO}
{$USE bitwise}
{$USE ini}
{$USE file}
 
Status
Not open for further replies.
Top