| Property | Value |
|---|---|
| Native Name | SHIFT_RIGHT |
| Hash | 0x97EF1E5BCE9DC075 |
| Return Type | int |
| Build | 1207 |
| Parameters | value (int), bitShift (int) |
Description: Right bit shifts a value.
It is advised you use the >> operator instead of this native. It does the same and is faster.
Usage
Lua (Direct):
local result = ShiftRight(value, bitShift)
Lua (Hash):
local result = Citizen.InvokeNative(0x97EF1E5BCE9DC075, value, bitShift)