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

Member
9/5/2026

!!exec $function[printHello;name] Hello $name 👋 $endFunction $callFunction[printhello;Mika]

Custom Command
APP
9/5/2026
Hello Mika 👋

Call the function, using $printHello

Member
9/5/2026

!!exec $function[printHello;name] Hello $name 👋 $endFunction $printhello[Mika]

Custom Command
APP
9/5/2026
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