Custom Command
FunctionsUseful Functions

$callFunction

To call a user-defined function created with $function

Usage:

$callFunction[Function Name;Argument 1 (optional);Argument 2....(optional)]

Example:

$callFunction[printHello;Mika]

Call the function, using $callFunction


!!exec $function[printHello;name]


Hello $name 👋


$endFunction $callFunction[printhello;Mika]

Hello Mika 👋

Call the function, using $printHello


!!exec $function[printHello;name]


Hello $name 👋


$endFunction $printhello[Mika]

Hello Mika 👋

A function name can't start with number, and must be within [A-Z or a-z or _ or 0-9]

Function difficulty: Difficult

Tags: Function Custom Functions Nested Code

On this page