mirror of
https://gitlab.com/YuukiPS/GC-Resources.git
synced 2025-04-29 09:35:48 +00:00
13 lines
389 B
Lua
13 lines
389 B
Lua
function OnClientExecuteReq(context, param1, param2, param3)
|
|
local this_target = ScriptLib.GetContextGadgetConfigId(context)
|
|
|
|
if 201 == param1 then
|
|
ScriptLib.SetGadgetStateByConfigId(context,this_target, GadgetState.GearStart)
|
|
ScriptLib.PrintLog("TreeRootGearStart")
|
|
end
|
|
if 0 == param1 then
|
|
ScriptLib.SetGadgetStateByConfigId(context,this_target, GadgetState.Default)
|
|
end
|
|
|
|
|
|
end |