Skip to content

$deleteVar

$deleteVar will delete a given variable.

Usage

$deleteVar[variable;id;table?]

Parameters

FieldTypeDescriptionRequired
variablestring, numberVariable name.true
idnumberID of the variable to delete ( userID etc. ).true
table?stringVariable table.false

Example(s)

This will delete a variable called “Test”:

1
client.command({
2
name: "deleteVar",
3
code: `
4
$deleteVar[Test;$authorID;main]
5
`
6
});