mirror of
https://github.com/FlourishingWorld/hk4e.git
synced 2026-02-05 22:02:27 +08:00
13 lines
389 B
Go
13 lines
389 B
Go
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 |