0
0
mirror of https://gitlab.com/YuukiPS/GC-Resources.git synced 2025-04-29 09:35:48 +00:00
GC-Resources/Resources/Scripts/Scene/1/scene1_group111102105.lua
KingRainbow44 8dd3a721e5
Revert "The Great De-Local'ifying of defs and base_info"
This reverts commit 0989747b
2023-08-30 21:15:50 -04:00

157 lines
4.3 KiB
Lua
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

-- 基础信息
local base_info = {
group_id = 111102105
}
-- DEFS_MISCS
--第一次交互的option之后切为2
local optionID = {431}
--常用ID
--{431,432} 开/关门
--{433} 启动电梯
--{438,439} 开/关风扇权限等级3
--{440} 权限操作台解除物件锁定
--================================================================
--
-- 配置
--
--================================================================
-- 怪物
monsters = {
}
-- NPC
npcs = {
}
-- 装置
gadgets = {
{ config_id = 105001, gadget_id = 70330416, pos = { x = 1990.251, y = 221.899, z = -1580.570 }, rot = { x = 0.000, y = 0.000, z = 0.000 }, level = 32, persistent = true },
{ config_id = 105002, gadget_id = 70330283, pos = { x = 1981.424, y = 221.095, z = -1566.378 }, rot = { x = 0.000, y = 0.000, z = 0.000 }, level = 32, persistent = true, server_global_value_config = {SGV_CHAINTYPE = 100007, SGV_CHAINLEVEL = 1} }
}
-- 区域
regions = {
}
-- 触发器
triggers = {
-- 点击misc中配置的option1
{ config_id = 1105003, name = "SELECT_OPTION_105003", event = EventType.EVENT_SELECT_OPTION, source = "", condition = "condition_EVENT_SELECT_OPTION_105003", action = "action_EVENT_SELECT_OPTION_105003", trigger_count = 0 },
-- 点击option1后的执行
{ config_id = 1105004, name = "GADGET_STATE_CHANGE_105004", event = EventType.EVENT_GADGET_STATE_CHANGE, source = "", condition = "condition_EVENT_GADGET_STATE_CHANGE_105004", action = "action_EVENT_GADGET_STATE_CHANGE_105004", trigger_count = 0 },
-- 点击option1后的保底
{ config_id = 1105005, name = "GROUP_LOAD_105005", event = EventType.EVENT_GROUP_LOAD, source = "", condition = "condition_EVENT_GROUP_LOAD_105005", action = "action_EVENT_GROUP_LOAD_105005", trigger_count = 0 }
}
-- 变量
variables = {
}
--================================================================
--
-- 初始化配置
--
--================================================================
-- 初始化时创建
init_config = {
suite = 1,
end_suite = 0,
rand_suite = false
}
--================================================================
--
-- 小组配置
--
--================================================================
suites = {
{
-- suite_id = 1,
-- description = ,
monsters = { },
gadgets = { 105001, 105002 },
regions = { },
triggers = { "SELECT_OPTION_105003", "GADGET_STATE_CHANGE_105004", "GROUP_LOAD_105005" },
rand_weight = 100
}
}
--================================================================
--
-- 触发器
--
--================================================================
-- 触发条件
function condition_EVENT_SELECT_OPTION_105003(context, evt)
-- 判断是gadgetid 105002 option_id 431
if 105002 ~= evt.param1 then
return false
end
if 431 ~= evt.param2 then
return false
end
return true
end
-- 触发操作
function action_EVENT_SELECT_OPTION_105003(context, evt)
-- 将configid为 105002 的物件更改为状态 GadgetState.GearAction1
if 0 ~= ScriptLib.SetGadgetStateByConfigId(context, 105002, GadgetState.GearAction1) then
ScriptLib.PrintContextLog(context, "@@ LUA_WARNING : set_gadget_state_by_configId")
return -1
end
return 0
end
-- 触发条件
function condition_EVENT_GADGET_STATE_CHANGE_105004(context, evt)
if 105002 ~= evt.param2 or GadgetState.GearAction1 ~= evt.param1 then
return false
end
return true
end
-- 触发操作
function action_EVENT_GADGET_STATE_CHANGE_105004(context, evt)
-- 将configid为 105001 的物件更改为状态 GadgetState.GearStart
if 0 ~= ScriptLib.SetGadgetStateByConfigId(context, 105001, GadgetState.GearStart) then
ScriptLib.PrintContextLog(context, "@@ LUA_WARNING : set_gadget_state_by_configId")
return -1
end
return 0
end
-- 触发条件
function condition_EVENT_GROUP_LOAD_105005(context, evt)
if GadgetState.GearAction1 ~= ScriptLib.GetGadgetStateByConfigId(context, 111102105, 105002) then
return false
end
return true
end
-- 触发操作
function action_EVENT_GROUP_LOAD_105005(context, evt)
-- 将configid为 105001 的物件更改为状态 GadgetState.GearStart
if 0 ~= ScriptLib.SetGadgetStateByConfigId(context, 105001, GadgetState.GearStart) then
ScriptLib.PrintContextLog(context, "@@ LUA_WARNING : set_gadget_state_by_configId")
return -1
end
return 0
end
require "V3_1/PermissonOperator"