GSServer-CBT/soggy_resources/lua/Scene/3/scene3_group133002220.lua

89 lines
1.9 KiB
Lua
Raw Normal View History

2022-11-21 11:30:31 +03:00
--================================================================
--
-- 配置
--
--================================================================
-- 怪物
monsters = {
}
-- NPC
npcs = {
}
-- 装置
gadgets = {
{ config_id = 1773, gadget_id = 70900007, pos = { x = 1880.6, y = 246.2, z = -500.7 }, rot = { x = 0.0, y = 197.7, z = 0.0 }, level = 1, persistent = true }
}
-- 区域
regions = {
{ config_id = 241, shape = RegionShape.SPHERE, radius = 5, pos = { x = 1880.0, y = 246.2, z = -500.2 } }
}
-- 触发器
triggers = {
{ name = "GADGET_STATE_CHANGE_241", event = EventType.EVENT_GADGET_STATE_CHANGE, source = "", condition = "condition_EVENT_GADGET_STATE_CHANGE_241", action = "action_EVENT_GADGET_STATE_CHANGE_241", trigger_count = 0 }
}
-- 变量
variables = {
}
--================================================================
--
-- 初始化配置
--
--================================================================
-- 初始化时创建
init_config = {
suite = 1,
rand_suite = false,
npcs = { }
}
--================================================================
--
-- 小组配置
--
--================================================================
suites = {
{
-- suite_id = 0,
-- description = ,
monsters = { },
gadgets = { 1773 },
regions = { 241 },
triggers = { "GADGET_STATE_CHANGE_241" },
rand_weight = 100
}
}
--================================================================
--
-- 触发器
--
--================================================================
-- 触发条件
function condition_EVENT_GADGET_STATE_CHANGE_241(context, evt)
if 1773 ~= evt.param2 or GadgetState.GearStart ~= evt.param1 then
return false
end
return true
end
-- 触发操作
function action_EVENT_GADGET_STATE_CHANGE_241(context, evt)
-- 重新生成指定group指定suite
if 0 ~= ScriptLib.RefreshGroup(context, { group_id = 133002087, suite = 1 }) then
return -1
end
return 0
end