mirror of
https://github.com/gbudny93/RouterOS_Useful_Scripts.git
synced 2025-06-21 09:35:43 +02:00
16 lines
285 B
Text
16 lines
285 B
Text
|
# RouterOS Function
|
||
|
# Copyright (c) Grzegorz Budny
|
||
|
# Modulo function
|
||
|
|
||
|
:global Modulo do={
|
||
|
|
||
|
:local truncated;
|
||
|
:local reminder;
|
||
|
|
||
|
:set $truncated ($number / $modulo);
|
||
|
:set $reminder ($number - ($modulo * $truncated));
|
||
|
|
||
|
:return $reminder
|
||
|
}
|
||
|
|
||
|
$Modulo number=5 modulo=2;
|