$math
Calculates a math expression.
Usage
$math[expression]
This function has one param.
Param
Description
Type
Required
expression
The math expression to solve.
String
Yes
Math Symbols:
+
- Addition.-
- Subtraction./
- Division.*
- Multiplication.()
- Parentheses you can put equations in (changes order of operations).
Examples
Addition
bot.commands.add({
type: "example",
name: "example",
code: `$math[1+1]` //Returns 1
})
Subtraction
bot.commands.add({
type: "basicCommand",
name: "example",
code: `$math[10-5]` //Returns 5
})
Multiplication
bot.commands.add({
type: "basicCommand",
name: "example",
code: `$math[2*2]` //Returns 4
})
Division
bot.commands.add({
type: "basicCommand",
name: "example",
code: `$math[32/4]` //Returns 8
})
Mixing Operations
bot.commands.add({
type: "basicCommand",
name: "example",
code: `$math[5-((30/2)*2)+10]` //Returns -15
})
Last updated
Was this helpful?