mirror of
https://gitlab.com/YuukiPS/GC-Resources.git
synced 2025-04-29 09:35:48 +00:00
25 lines
1.1 KiB
Lua
25 lines
1.1 KiB
Lua
function OnClientExecuteReq(context, param1, param2, param3)
|
|
if param1 == 0 then
|
|
ScriptLib.SetGadgetState(context, GadgetState.Default)
|
|
elseif param1 == 106 then
|
|
ScriptLib.SetGadgetState(context, GadgetState.ChestRock)
|
|
elseif param1 == 201 then
|
|
ScriptLib.SetGadgetState(context, GadgetState.GearStart)
|
|
elseif param1 == 202 then
|
|
ScriptLib.SetGadgetState(context, GadgetState.GearStop)
|
|
elseif param1 == 203 then
|
|
ScriptLib.SetGadgetState(context, GadgetState.GearAction1)
|
|
elseif param1 == 204 then
|
|
ScriptLib.SetGadgetState(context, GadgetState.GearAction2)
|
|
elseif param1 == 901 then
|
|
ScriptLib.SetGadgetState(context, GadgetState.Action01)
|
|
elseif param1 == 902 then
|
|
ScriptLib.SetGadgetState(context, GadgetState.Action02)
|
|
elseif param1 == 903 then
|
|
ScriptLib.SetGadgetState(context, GadgetState.Action03)
|
|
elseif (param1 >= 101 and param1 <= 104) or param1 == 200 or
|
|
(param1 >= 211 and param1 <= 214) or param1 == 222 or
|
|
(param1 >= 300 and param1 <= 304) or (param1 >= 310 and param1 <= 314) or param1 == 322 then
|
|
ScriptLib.SetGadgetState(context, param1)
|
|
end
|
|
end |