HEX..END
Sanny Builder supports writing raw content into an output file. Within this construct, all values are directly written in an output file without undergoing any checks.
Use this feature only if you know what you're doing. Any mistakes will corrupt the script file making it unreadable by the game or a script editor.
Syntax
This sequence of bytes is the compiled version of the opcode 0004: $2 = 1
, so the game will correctly read it and set the value of the variable $2
to 1
.
Each byte consists of two digits. The compiler ignores any spaces, effectively treating a pair of two digits separated by a space as one value. Additionally, when there's an unpaired digit, it is automatically prefixed with a leading 0
.
For example, a sequence of three letters A B C
will be compiled as the number 0xAB0C
.
The HEX..END
construct also accepts string literals, labels, global variables, model names. They are compiled without a preceding data type byte.
This is the exact copy of the opcode 0004: $PLAYER_CHAR = @get_offset
A string literal enclosed in double quotes is compiled as a sequence of characters.
Escape Sequences
The following escape sequences are supported within a string literal:
It produces the following sequence of bytes: 00 08 09 0A 0D DD
.
Entering large numbers
For convenience, large numbers can be prefixed with an &
symbol. The number following the &
symbol can be positive or negative, and it can be represented in either decimal or hexadecimal format.
This example produces the following sequence of bytes: E8 03 00 CB 5C FF
.
Byte Repetition
In cases where it is necessary to repeat a specific byte multiple times, such as when creating a zero-filled buffer, indicate the count by appending (n)
after the byte, where n
is a positive integer number:
This syntax is equivalent to:
Byte repetitions can be used multiple times within the same block, and they can also be set with a constant value.
Including binary files
hex..end
allows usage of the $INCLUDE
directive to embed the contents of a binary file directly into the script's body. The syntax is as follows:
Path resolution follows the rules set for the {$INCLUDE} directive.
Last updated