Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 276 Bytes

usdmodulo.md

File metadata and controls

19 lines (14 loc) · 276 Bytes
description
Returns the remainder of the division

$modulo

This function will divide the values, then return the remainder.

$modulo[value1;value2;...]
bot.command({
name: "remainder",
code: `Remainder: $modulo[5;2]` //Returns 1
})