Contents

Strings and Variables Commands


set <value>, <accumulator> - Assigns a value to the accumulator.
add <v1>, <v2>, <acc> - Adds v1 and v2.
sub <v1>, <v2>, <acc> - Subtracts v2 from v1.
mul <v1>, <v2>, <acc> - Multiplies v1 by v2.
div <v1>, <v2>, <acc> - Divides v1 by v2.
concat <s1>, <s2>, <acc> - Concatenates string s1 and s2.
chrtohex <char>, <acc> - Converts a character to its HEX representation.
hextochr <hex>, <acc> - Converts a HEX string to a character.
substr <str>, <start>, <len>, <acc> - Extracts a substring.
length <str>, <acc> - Gets string length.
createstring <char>, <count>, <acc> - Creates a string of repeating characters.
rndbyte <max> - Generates a random byte value.
settoclipboard <text> - Copies text to the system clipboard.

 

Copyright © 2001 - 2026, DotFix Software