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

216 lines
7.2 KiB
Lua
Raw Normal View History

2022-11-21 11:30:31 +03:00
--================================================================
--
-- 配置
--
--================================================================
-- 怪物
monsters = {
}
-- NPC
npcs = {
}
-- 装置
gadgets = {
{ config_id = 173, gadget_id = 70900039, pos = { x = 2253.8, y = 298.0, z = -363.9 }, rot = { x = 0.0, y = 88.2, z = 0.0 }, level = 1, persistent = true },
{ config_id = 177, gadget_id = 70690001, pos = { x = 2261.7, y = 298.1, z = -364.3 }, rot = { x = 0.0, y = 90.0, z = 0.0 }, level = 1 },
{ config_id = 178, gadget_id = 70690001, pos = { x = 2291.7, y = 298.1, z = -354.3 }, rot = { x = 0.0, y = 90.0, z = 0.0 }, level = 1 },
{ config_id = 179, gadget_id = 70690001, pos = { x = 2321.7, y = 298.1, z = -364.3 }, rot = { x = 0.0, y = 90.0, z = 0.0 }, level = 1 },
{ config_id = 180, gadget_id = 70690001, pos = { x = 2351.7, y = 298.1, z = -354.3 }, rot = { x = 0.0, y = 90.0, z = 0.0 }, level = 1 },
{ config_id = 181, gadget_id = 70210006, pos = { x = 2409.1, y = 293.4, z = -369.0 }, rot = { x = 2.5, y = 264.5, z = 0.3 }, level = 1, chest_drop_id = 403223, isOneoff = true },
{ config_id = 204, gadget_id = 70900201, pos = { x = 2409.3, y = 293.5, z = -369.2 }, rot = { x = 0.0, y = 315.1, z = 0.0 }, level = 1 }
}
-- 区域
regions = {
{ config_id = 39, shape = RegionShape.SPHERE, radius = 5, pos = { x = 2255.9, y = 293.9, z = -369.9 } },
{ config_id = 40, shape = RegionShape.SPHERE, radius = 5, pos = { x = 2255.4, y = 294.0, z = -370.9 } },
{ config_id = 41, shape = RegionShape.SPHERE, radius = 5, pos = { x = 2256.0, y = 294.0, z = -368.7 } },
{ config_id = 45, shape = RegionShape.SPHERE, radius = 5, pos = { x = 2379.1, y = 305.9, z = -368.3 } },
{ config_id = 97, shape = RegionShape.SPHERE, radius = 5, pos = { x = 2255.6, y = 294.0, z = -369.9 } }
}
-- 触发器
triggers = {
{ name = "GADGET_STATE_CHANGE_39", event = EventType.EVENT_GADGET_STATE_CHANGE, source = "", condition = "condition_EVENT_GADGET_STATE_CHANGE_39", action = "action_EVENT_GADGET_STATE_CHANGE_39", tlog_tag = "奔狼岭_32_元素机关挑战_开始" },
{ name = "CHALLENGE_SUCCESS_40", event = EventType.EVENT_CHALLENGE_SUCCESS, source = "32", condition = "", action = "action_EVENT_CHALLENGE_SUCCESS_40", tlog_tag = "奔狼岭_32_元素机关挑战_结算" },
{ name = "CHALLENGE_FAIL_41", event = EventType.EVENT_CHALLENGE_FAIL, source = "32", condition = "", action = "action_EVENT_CHALLENGE_FAIL_41" },
{ name = "GADGET_STATE_CHANGE_45", event = EventType.EVENT_GADGET_STATE_CHANGE, source = "", condition = "condition_EVENT_GADGET_STATE_CHANGE_45", action = "", trigger_count = 0, tag = "11" },
{ name = "CLIENT_EXECUTE_97", event = EventType.EVENT_CLIENT_EXECUTE, source = "ChestStateChange", condition = "", action = "action_EVENT_CLIENT_EXECUTE_97", trigger_count = 0 }
}
-- 变量
variables = {
}
--================================================================
--
-- 初始化配置
--
--================================================================
-- 初始化时创建
init_config = {
suite = 1,
rand_suite = true,
npcs = { }
}
--================================================================
--
-- 小组配置
--
--================================================================
suites = {
{
-- suite_id = 0,
-- description = ,
monsters = { },
gadgets = { 173 },
regions = { 39, 40, 41, 45, 97 },
triggers = { "GADGET_STATE_CHANGE_39", "CHALLENGE_SUCCESS_40", "CHALLENGE_FAIL_41", "GADGET_STATE_CHANGE_45", "CLIENT_EXECUTE_97" },
rand_weight = 100
}
}
--================================================================
--
-- 触发器
--
--================================================================
-- 触发条件
function condition_EVENT_GADGET_STATE_CHANGE_39(context, evt)
if 173 ~= evt.param2 or GadgetState.GearStart ~= evt.param1 then
return false
end
return true
end
-- 触发操作
function action_EVENT_GADGET_STATE_CHANGE_39(context, evt)
-- 创建编号为32该挑战的识别id),挑战内容为134的区域挑战具体参数填写方式见DungeonChallengeData表中的注释所有填写的值都必须是int类型
if 0 ~= ScriptLib.ActiveChallenge(context, 32, 134, 20, 7, 11, 1) then
return -1
end
-- 触发镜头注目注目位置为坐标2416305-326持续时间为3秒并且为强制注目形式不广播其他玩家
local pos = {x=2416, y=305, z=-326}
if 0 ~= ScriptLib.BeginCameraSceneLook(context, { look_pos = pos, duration = 3, is_force = true, is_broadcast = false }) then
return -1
end
-- 创建id为177的gadget
if 0 ~= ScriptLib.CreateGadget(context, { config_id = 177 }) then
return -1
end
-- 创建id为178的gadget
if 0 ~= ScriptLib.CreateGadget(context, { config_id = 178 }) then
return -1
end
-- 创建id为179的gadget
if 0 ~= ScriptLib.CreateGadget(context, { config_id = 179 }) then
return -1
end
-- 创建id为180的gadget
if 0 ~= ScriptLib.CreateGadget(context, { config_id = 180 }) then
return -1
end
-- 创建id为204的gadget
if 0 ~= ScriptLib.CreateGadget(context, { config_id = 204 }) then
return -1
end
-- 创建id为181的gadget
if 0 ~= ScriptLib.CreateGadget(context, { config_id = 181 }) then
return -1
end
return 0
end
-- 触发条件
-- 触发操作
function action_EVENT_CHALLENGE_SUCCESS_40(context, evt)
-- 永久关闭CongfigId的Gadget需要和Groups的RefreshWithBlock标签搭配
if 0 ~= ScriptLib.KillEntityByConfigId(context, { config_id = 177 }) then
return -1
end
-- 永久关闭CongfigId的Gadget需要和Groups的RefreshWithBlock标签搭配
if 0 ~= ScriptLib.KillEntityByConfigId(context, { config_id = 178 }) then
return -1
end
-- 永久关闭CongfigId的Gadget需要和Groups的RefreshWithBlock标签搭配
if 0 ~= ScriptLib.KillEntityByConfigId(context, { config_id = 179 }) then
return -1
end
-- 永久关闭CongfigId的Gadget需要和Groups的RefreshWithBlock标签搭配
if 0 ~= ScriptLib.KillEntityByConfigId(context, { config_id = 180 }) then
return -1
end
-- 永久关闭CongfigId的Gadget需要和Groups的RefreshWithBlock标签搭配
if 0 ~= ScriptLib.KillEntityByConfigId(context, { config_id = 204 }) then
return -1
end
return 0
end
-- 触发条件
-- 触发操作
function action_EVENT_CHALLENGE_FAIL_41(context, evt)
-- 重新生成指定group指定suite
if 0 ~= ScriptLib.RefreshGroup(context, { group_id = 133004032, suite = 1 }) then
return -1
end
-- 将configid为 173 的物件更改为状态 GadgetState.Default
if 0 ~= ScriptLib.SetGadgetStateByConfigId(context, 173, GadgetState.Default) then
return -1
end
return 0
end
-- 触发条件
function condition_EVENT_GADGET_STATE_CHANGE_45(context, evt)
if 181 ~= evt.param2 or GadgetState.ChestOpened ~= evt.param1 then
return false
end
return true
end
-- 触发操作
-- 触发条件
-- 触发操作
function action_EVENT_CLIENT_EXECUTE_97(context, evt)
if evt.param1 == 0 then
local this_chest = ScriptLib.GetGadgetConfigId(context, { gadget_eid = evt.source_eid })
local this_group = ScriptLib.GetContextGroupId(context)
ScriptLib.SetGroupGadgetStateByConfigId(context, this_group, this_chest, GadgetState.Default)
return 0
end
end