Character Escaping
(for advanced users)
What Are Escape Characters?
Escape characters are used to indicate that the character should not be interpeted as a modifaction of the code, rather just text that appears in the code or bot's response. Basically, escape characters let your bot return the function-triggering characters (e.g ;
, $
, [
, ]
) without any changes to the code.
Escapable Characters
Character | Escaped |
---|---|
; | %{-SEMICOL-}% |
$ | %{DOL}% |
[ | \[ |
] | %ESCAPED% |
Example
$sendMessage[\[ Hi, this is pretty cool%{-SEMICOL-}% right? %ESCAPED%]
🧙♂️ It's recommended that you use unstable mode when using character escaping.