mirror of
https://gitlab.com/YuukiPS/GC-Resources.git
synced 2025-04-29 09:35:48 +00:00
13 lines
377 B
Lua
13 lines
377 B
Lua
-- 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
|
|
|
|
|