Native referenceRedM

SET_CONTROL_SHAKE

0x48B3886C1358D0D5 PAD
FUNCTION SIGNATURE
void SET_CONTROL_SHAKE(int padIndex, int duration, int frequency);
Property Value
Native Name SET_PAD_SHAKE
Hash 0x48B3886C1358D0D5
Return Type void
Build 1207
Parameters padIndex (int), duration (int), frequency (int)

Description: ``` p0 always seems to be 0
duration in milliseconds
frequency should range from about 10 (slow vibration) to 255 (very fast)
example:
SET_PAD_SHAKE(0, 100, 200);


### Usage

**Lua (Direct):**
```lua
SetPadShake(padIndex, duration, frequency)

Lua (Hash):

Citizen.InvokeNative(0x48B3886C1358D0D5, padIndex, duration, frequency)
Back to PAD