mirror of
https://github.com/FlourishingWorld/hk4e.git
synced 2026-02-07 20:22:26 +08:00
13 lines
377 B
Go
13 lines
377 B
Go
-- abilityRequest
|
|
function OnClientExecuteReq(context, param1, param2, param3)
|
|
--ScriptLib.PrintLog("##param1="..param1)
|
|
-- 获取机关当前状态
|
|
local this_config = ScriptLib.GetContextGadgetConfigId(context)
|
|
|
|
local this_group = ScriptLib.GetContextGroupId(context)
|
|
|
|
ScriptLib.SetGroupGadgetStateByConfigId(context, this_group, 33, GadgetState.GearStart )
|
|
end
|
|
|
|
|