Overview
Arithmetic shift right.
(string) Number that you want get Shifting.
(number) Number of time that you want your number shift to right.
(string) Return Shifted numbers in string mode.
When adding an action with the script editor, you can use this field to specify a variable that the return value will be stored in.
num = Memory.ShiftRight(20, 3) Dialog.Message("", num)
num = Memory.ShiftRight("20", 3) Dialog.Message("", num)
num = Memory.ShiftRight("90000000000000", 10) Dialog.Message("", num)
See also: Related Actions