mirror of
https://github.com/gbudny93/RouterOS_Useful_Scripts.git
synced 2025-06-22 09:53:31 +02:00
17 lines
No EOL
286 B
Text
17 lines
No EOL
286 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; |