mirror of
https://gitlab.com/YuukiPS/GC-Resources.git
synced 2025-04-28 17:15:22 +00:00
161 lines
4.7 KiB
Lua
161 lines
4.7 KiB
Lua
-- 基础信息
|
||
local base_info = {
|
||
group_id = 144002076
|
||
}
|
||
|
||
-- Trigger变量
|
||
local defs = {
|
||
group_id = 144002076,
|
||
gadget_signal_id = 76001
|
||
}
|
||
|
||
--================================================================
|
||
--
|
||
-- 配置
|
||
--
|
||
--================================================================
|
||
|
||
-- 怪物
|
||
monsters = {
|
||
}
|
||
|
||
-- NPC
|
||
npcs = {
|
||
}
|
||
|
||
-- 装置
|
||
gadgets = {
|
||
{ config_id = 76001, gadget_id = 70220068, pos = { x = 549.743, y = 200.000, z = -145.042 }, rot = { x = 0.000, y = 0.000, z = 0.000 }, level = 1, persistent = true, area_id = 102 }
|
||
}
|
||
|
||
-- 区域
|
||
regions = {
|
||
-- 靠近海上浮标后1)切换物件状态;2)显示Reminder
|
||
{ config_id = 76002, shape = RegionShape.SPHERE, radius = 8, pos = { x = 550.408, y = 200.000, z = -139.723 }, area_id = 102 },
|
||
-- 靠近海上浮标后更新信号源
|
||
{ config_id = 76003, shape = RegionShape.SPHERE, radius = 8, pos = { x = 550.408, y = 200.000, z = -139.723 }, area_id = 102 },
|
||
-- 首次靠近海上浮标后通知任务完成
|
||
{ config_id = 76004, shape = RegionShape.SPHERE, radius = 10, pos = { x = 548.045, y = 200.000, z = -137.457 }, area_id = 102 }
|
||
}
|
||
|
||
-- 触发器
|
||
triggers = {
|
||
-- 靠近海上浮标后1)切换物件状态;2)显示Reminder
|
||
{ config_id = 1076002, name = "ENTER_REGION_76002", event = EventType.EVENT_ENTER_REGION, source = "", condition = "condition_EVENT_ENTER_REGION_76002", action = "action_EVENT_ENTER_REGION_76002", trigger_count = 0 },
|
||
-- 靠近海上浮标后更新信号源
|
||
{ config_id = 1076003, name = "ENTER_REGION_76003", event = EventType.EVENT_ENTER_REGION, source = "", condition = "condition_EVENT_ENTER_REGION_76003", action = "action_EVENT_ENTER_REGION_76003", trigger_count = 0 },
|
||
-- 首次靠近海上浮标后通知任务完成
|
||
{ config_id = 1076004, name = "ENTER_REGION_76004", event = EventType.EVENT_ENTER_REGION, source = "", condition = "condition_EVENT_ENTER_REGION_76004", action = "action_EVENT_ENTER_REGION_76004" }
|
||
}
|
||
|
||
-- 点位
|
||
points = {
|
||
-- 声明创建船只的transform
|
||
{ config_id = 76005, pos = { x = 543.209, y = 200.000, z = -131.737 }, rot = { x = 0.000, y = 309.957, z = 0.000 }, area_id = 102 }
|
||
}
|
||
|
||
-- 变量
|
||
variables = {
|
||
}
|
||
|
||
--================================================================
|
||
--
|
||
-- 初始化配置
|
||
--
|
||
--================================================================
|
||
|
||
-- 初始化时创建
|
||
init_config = {
|
||
suite = 1,
|
||
end_suite = 0,
|
||
rand_suite = false
|
||
}
|
||
|
||
--================================================================
|
||
--
|
||
-- 小组配置
|
||
--
|
||
--================================================================
|
||
|
||
suites = {
|
||
{
|
||
-- suite_id = 1,
|
||
-- description = ,
|
||
monsters = { },
|
||
gadgets = { 76001 },
|
||
regions = { 76002, 76003, 76004 },
|
||
triggers = { "ENTER_REGION_76002", "ENTER_REGION_76003", "ENTER_REGION_76004" },
|
||
rand_weight = 100
|
||
}
|
||
}
|
||
|
||
--================================================================
|
||
--
|
||
-- 触发器
|
||
--
|
||
--================================================================
|
||
|
||
-- 触发条件
|
||
function condition_EVENT_ENTER_REGION_76002(context, evt)
|
||
if evt.param1 ~= 76002 then return false end
|
||
|
||
-- 判断角色数量不少于1
|
||
if ScriptLib.GetRegionEntityCount(context, { region_eid = evt.source_eid, entity_type = EntityType.AVATAR }) < 1 then
|
||
return false
|
||
end
|
||
|
||
return true
|
||
end
|
||
|
||
-- 触发操作
|
||
function action_EVENT_ENTER_REGION_76002(context, evt)
|
||
-- 将configid为 76001 的物件更改为状态 GadgetState.GearStop
|
||
if 0 ~= ScriptLib.SetGadgetStateByConfigId(context, 76001, GadgetState.GearStop) then
|
||
ScriptLib.PrintContextLog(context, "@@ LUA_WARNING : set_gadget_state_by_configId")
|
||
return -1
|
||
end
|
||
|
||
return 0
|
||
end
|
||
|
||
-- 触发条件
|
||
function condition_EVENT_ENTER_REGION_76003(context, evt)
|
||
if evt.param1 ~= 76003 then return false end
|
||
|
||
-- 判断角色数量不少于1
|
||
if ScriptLib.GetRegionEntityCount(context, { region_eid = evt.source_eid, entity_type = EntityType.AVATAR }) < 1 then
|
||
return false
|
||
end
|
||
|
||
return true
|
||
end
|
||
|
||
-- 触发操作
|
||
function action_EVENT_ENTER_REGION_76003(context, evt)
|
||
ScriptLib.UnlockFloatSignal(context, defs.group_id, defs.gadget_signal_id)
|
||
|
||
return 0
|
||
end
|
||
|
||
-- 触发条件
|
||
function condition_EVENT_ENTER_REGION_76004(context, evt)
|
||
if evt.param1 ~= 76004 then return false end
|
||
|
||
-- 判断角色数量不少于1
|
||
if ScriptLib.GetRegionEntityCount(context, { region_eid = evt.source_eid, entity_type = EntityType.AVATAR }) < 1 then
|
||
return false
|
||
end
|
||
|
||
return true
|
||
end
|
||
|
||
-- 触发操作
|
||
function action_EVENT_ENTER_REGION_76004(context, evt)
|
||
-- 通知任务系统完成条件类型"LUA通知",复杂参数为quest_param的进度+1
|
||
if 0 ~= ScriptLib.AddQuestProgress(context, "7900901") then
|
||
ScriptLib.PrintContextLog(context, "@@ LUA_WARNING : add_quest_progress")
|
||
return -1
|
||
end
|
||
|
||
return 0
|
||
end |