$modulo

Returns remainder between numbers.

Syntax

$modulo[A;B]

Parameters

  • A (Type: Integer || Flag: Required): The dividend.
  • B (Type: Integer || Flag: Required): The divisor.

Example

$nomention
$modulo[$message[1];$message[2]]
!example 5 10 Result: 5 Explanation: 5/10==0.5 => Remainder is 5 !example 10 100 Result: 10 Explanation: 10/100==0.10 => Remainder is 10 !example 25 5 Result: 0 Explanation: 25/5==5 => Remainder is 0

What is this?

How $message[] works?