mirror of
https://github.com/FlourishingWorld/hk4e.git
synced 2026-02-04 18:22:26 +08:00
13 lines
365 B
Go
13 lines
365 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.SetGadgetEnableInteract(context, this_group, this_config, true)
|
|
end
|
|
|
|
|