mirror of
https://gitlab.com/YuukiPS/GC-Resources.git
synced 2025-04-28 09:05:26 +00:00
289 lines
8.9 KiB
Lua
289 lines
8.9 KiB
Lua
-- 基础信息
|
||
local base_info = {
|
||
group_id = 220139023
|
||
}
|
||
|
||
--================================================================
|
||
--
|
||
-- 配置
|
||
--
|
||
--================================================================
|
||
|
||
-- 怪物
|
||
monsters = {
|
||
}
|
||
|
||
-- NPC
|
||
npcs = {
|
||
}
|
||
|
||
-- 装置
|
||
gadgets = {
|
||
{ config_id = 23001, gadget_id = 70380319, pos = { x = -2.539, y = 43.608, z = 7.138 }, rot = { x = 0.000, y = 269.471, z = 0.000 }, level = 1, is_use_point_array = true },
|
||
{ config_id = 23002, gadget_id = 70310380, pos = { x = -5.227, y = 43.588, z = 9.410 }, rot = { x = 0.000, y = 90.542, z = 0.000 }, level = 1, state = GadgetState.GearStop }
|
||
}
|
||
|
||
-- 区域
|
||
regions = {
|
||
}
|
||
|
||
-- 触发器
|
||
triggers = {
|
||
{ config_id = 1023003, name = "GADGET_STATE_CHANGE_23003", event = EventType.EVENT_GADGET_STATE_CHANGE, source = "", condition = "condition_EVENT_GADGET_STATE_CHANGE_23003", action = "action_EVENT_GADGET_STATE_CHANGE_23003", trigger_count = 0 },
|
||
{ config_id = 1023004, name = "GADGET_STATE_CHANGE_23004", event = EventType.EVENT_GADGET_STATE_CHANGE, source = "", condition = "condition_EVENT_GADGET_STATE_CHANGE_23004", action = "action_EVENT_GADGET_STATE_CHANGE_23004", trigger_count = 0 },
|
||
{ config_id = 1023005, name = "PLATFORM_ARRIVAL_23005", event = EventType.EVENT_PLATFORM_ARRIVAL, source = "", condition = "condition_EVENT_PLATFORM_ARRIVAL_23005", action = "action_EVENT_PLATFORM_ARRIVAL_23005", trigger_count = 0 },
|
||
{ config_id = 1023006, name = "PLATFORM_ARRIVAL_23006", event = EventType.EVENT_PLATFORM_ARRIVAL, source = "", condition = "condition_EVENT_PLATFORM_ARRIVAL_23006", action = "action_EVENT_PLATFORM_ARRIVAL_23006", trigger_count = 0 },
|
||
{ config_id = 1023007, name = "GADGET_STATE_CHANGE_23007", event = EventType.EVENT_GADGET_STATE_CHANGE, source = "", condition = "condition_EVENT_GADGET_STATE_CHANGE_23007", action = "action_EVENT_GADGET_STATE_CHANGE_23007", trigger_count = 0 },
|
||
{ config_id = 1023008, name = "PLATFORM_ARRIVAL_23008", event = EventType.EVENT_PLATFORM_ARRIVAL, source = "", condition = "condition_EVENT_PLATFORM_ARRIVAL_23008", action = "action_EVENT_PLATFORM_ARRIVAL_23008", trigger_count = 0 },
|
||
-- 创生时重置变量
|
||
{ config_id = 1023009, name = "GADGET_CREATE_23009", event = EventType.EVENT_GADGET_CREATE, source = "", condition = "condition_EVENT_GADGET_CREATE_23009", action = "action_EVENT_GADGET_CREATE_23009", trigger_count = 0 }
|
||
}
|
||
|
||
-- 变量
|
||
variables = {
|
||
{ config_id = 1, name = "lifter_pos_mark", value = 0, no_refresh = false }
|
||
}
|
||
|
||
--================================================================
|
||
--
|
||
-- 初始化配置
|
||
--
|
||
--================================================================
|
||
|
||
-- 初始化时创建
|
||
init_config = {
|
||
suite = 1,
|
||
end_suite = 0,
|
||
rand_suite = false
|
||
}
|
||
|
||
--================================================================
|
||
--
|
||
-- 小组配置
|
||
--
|
||
--================================================================
|
||
|
||
suites = {
|
||
{
|
||
-- suite_id = 1,
|
||
-- description = ,
|
||
monsters = { },
|
||
gadgets = { 23001, 23002 },
|
||
regions = { },
|
||
triggers = { "GADGET_STATE_CHANGE_23003", "GADGET_STATE_CHANGE_23004", "PLATFORM_ARRIVAL_23005", "PLATFORM_ARRIVAL_23006", "GADGET_STATE_CHANGE_23007", "PLATFORM_ARRIVAL_23008", "GADGET_CREATE_23009" },
|
||
rand_weight = 100
|
||
}
|
||
}
|
||
|
||
--================================================================
|
||
--
|
||
-- 触发器
|
||
--
|
||
--================================================================
|
||
|
||
-- 触发条件
|
||
function condition_EVENT_GADGET_STATE_CHANGE_23003(context, evt)
|
||
-- 检测config_id为23001的gadget是否从GadgetState.Default变为GadgetState.GearStart
|
||
if 23001 ~= evt.param2 or GadgetState.GearStart ~= evt.param1 or GadgetState.Default ~= evt.param3 then
|
||
return false
|
||
end
|
||
|
||
-- 判断变量"lifter_pos_mark"为0
|
||
if ScriptLib.GetGroupVariableValue(context, "lifter_pos_mark") ~= 0 then
|
||
return false
|
||
end
|
||
|
||
return true
|
||
end
|
||
|
||
-- 触发操作
|
||
function action_EVENT_GADGET_STATE_CHANGE_23003(context, evt)
|
||
-- 设置移动平台点阵,点阵id为point_array_id
|
||
-- route_type = 0,1,2 [OneWay 单向/Reciprocate 往复/Loop 循环]
|
||
-- turn_mode = true/false 开启/关闭
|
||
local tempParam = {route_type = 0, turn_mode = false}
|
||
if 0 ~= ScriptLib.SetPlatformPointArray(context, 23001, 3, {2}, tempParam) then
|
||
ScriptLib.PrintContextLog(context, "@@ LUA_WARNING : set_platform_pointArray")
|
||
return -1
|
||
end
|
||
|
||
return 0
|
||
end
|
||
|
||
-- 触发条件
|
||
function condition_EVENT_GADGET_STATE_CHANGE_23004(context, evt)
|
||
-- 检测config_id为23001的gadget是否从GadgetState.Default变为GadgetState.GearStart
|
||
if 23001 ~= evt.param2 or GadgetState.GearStart ~= evt.param1 or GadgetState.Default ~= evt.param3 then
|
||
return false
|
||
end
|
||
|
||
-- 判断变量"lifter_pos_mark"为1
|
||
if ScriptLib.GetGroupVariableValue(context, "lifter_pos_mark") ~= 1 then
|
||
return false
|
||
end
|
||
|
||
return true
|
||
end
|
||
|
||
-- 触发操作
|
||
function action_EVENT_GADGET_STATE_CHANGE_23004(context, evt)
|
||
-- 设置移动平台点阵,点阵id为point_array_id
|
||
-- route_type = 0,1,2 [OneWay 单向/Reciprocate 往复/Loop 循环]
|
||
-- turn_mode = true/false 开启/关闭
|
||
local tempParam = {route_type = 0, turn_mode = false}
|
||
if 0 ~= ScriptLib.SetPlatformPointArray(context, 23001, 3, {1}, tempParam) then
|
||
ScriptLib.PrintContextLog(context, "@@ LUA_WARNING : set_platform_pointArray")
|
||
return -1
|
||
end
|
||
|
||
return 0
|
||
end
|
||
|
||
-- 触发条件
|
||
function condition_EVENT_PLATFORM_ARRIVAL_23005(context, evt)
|
||
-- 判断是gadgetid 为 23001的移动平台,是否到达了3 的点集中的 2 点
|
||
|
||
if 23001 ~= evt.param1 then
|
||
return false
|
||
end
|
||
|
||
if 3 ~= evt.param2 then
|
||
return false
|
||
end
|
||
|
||
if 2 ~= evt.param3 then
|
||
return false
|
||
end
|
||
|
||
|
||
return true
|
||
end
|
||
|
||
-- 触发操作
|
||
function action_EVENT_PLATFORM_ARRIVAL_23005(context, evt)
|
||
-- 将本组内变量名为 "lifter_pos_mark" 的变量设置为 1
|
||
if 0 ~= ScriptLib.SetGroupVariableValue(context, "lifter_pos_mark", 1) then
|
||
ScriptLib.PrintContextLog(context, "@@ LUA_WARNING : set_groupVariable")
|
||
return -1
|
||
end
|
||
|
||
return 0
|
||
end
|
||
|
||
-- 触发条件
|
||
function condition_EVENT_PLATFORM_ARRIVAL_23006(context, evt)
|
||
-- 判断是gadgetid 为 23001的移动平台,是否到达了3 的点集中的 1 点
|
||
|
||
if 23001 ~= evt.param1 then
|
||
return false
|
||
end
|
||
|
||
if 3 ~= evt.param2 then
|
||
return false
|
||
end
|
||
|
||
if 1 ~= evt.param3 then
|
||
return false
|
||
end
|
||
|
||
|
||
return true
|
||
end
|
||
|
||
-- 触发操作
|
||
function action_EVENT_PLATFORM_ARRIVAL_23006(context, evt)
|
||
-- 将本组内变量名为 "lifter_pos_mark" 的变量设置为 0
|
||
if 0 ~= ScriptLib.SetGroupVariableValue(context, "lifter_pos_mark", 0) then
|
||
ScriptLib.PrintContextLog(context, "@@ LUA_WARNING : set_groupVariable")
|
||
return -1
|
||
end
|
||
|
||
-- 将configid为 23002 的物件更改为状态 GadgetState.GearStop
|
||
if 0 ~= ScriptLib.SetGadgetStateByConfigId(context, 23002, GadgetState.GearStop) then
|
||
ScriptLib.PrintContextLog(context, "@@ LUA_WARNING : set_gadget_state_by_configId")
|
||
return -1
|
||
end
|
||
|
||
return 0
|
||
end
|
||
|
||
-- 触发条件
|
||
function condition_EVENT_GADGET_STATE_CHANGE_23007(context, evt)
|
||
-- 检测config_id为23002的gadget是否从GadgetState.Default变为GadgetState.GearStart
|
||
if 23002 ~= evt.param2 or GadgetState.GearStart ~= evt.param1 or GadgetState.Default ~= evt.param3 then
|
||
return false
|
||
end
|
||
|
||
return true
|
||
end
|
||
|
||
-- 触发操作
|
||
function action_EVENT_GADGET_STATE_CHANGE_23007(context, evt)
|
||
-- 设置移动平台点阵,点阵id为point_array_id
|
||
-- route_type = 0,1,2 [OneWay 单向/Reciprocate 往复/Loop 循环]
|
||
-- turn_mode = true/false 开启/关闭
|
||
local tempParam = {route_type = 0, turn_mode = false}
|
||
if 0 ~= ScriptLib.SetPlatformPointArray(context, 23001, 3, {1}, tempParam) then
|
||
ScriptLib.PrintContextLog(context, "@@ LUA_WARNING : set_platform_pointArray")
|
||
return -1
|
||
end
|
||
|
||
-- 将本组内变量名为 "lifter_pos_mark" 的变量设置为 1
|
||
if 0 ~= ScriptLib.SetGroupVariableValue(context, "lifter_pos_mark", 1) then
|
||
ScriptLib.PrintContextLog(context, "@@ LUA_WARNING : set_groupVariable")
|
||
return -1
|
||
end
|
||
|
||
return 0
|
||
end
|
||
|
||
-- 触发条件
|
||
function condition_EVENT_PLATFORM_ARRIVAL_23008(context, evt)
|
||
-- 判断是gadgetid 为 23001的移动平台,是否到达了3 的点集中的 2 点
|
||
|
||
if 23001 ~= evt.param1 then
|
||
return false
|
||
end
|
||
|
||
if 3 ~= evt.param2 then
|
||
return false
|
||
end
|
||
|
||
if 2 ~= evt.param3 then
|
||
return false
|
||
end
|
||
|
||
|
||
return true
|
||
end
|
||
|
||
-- 触发操作
|
||
function action_EVENT_PLATFORM_ARRIVAL_23008(context, evt)
|
||
-- 将configid为 23002 的物件更改为状态 GadgetState.Default
|
||
if 0 ~= ScriptLib.SetGadgetStateByConfigId(context, 23002, GadgetState.Default) then
|
||
ScriptLib.PrintContextLog(context, "@@ LUA_WARNING : set_gadget_state_by_configId")
|
||
return -1
|
||
end
|
||
|
||
return 0
|
||
end
|
||
|
||
-- 触发条件
|
||
function condition_EVENT_GADGET_CREATE_23009(context, evt)
|
||
if 23001 ~= evt.param1 then
|
||
return false
|
||
end
|
||
|
||
return true
|
||
end
|
||
|
||
-- 触发操作
|
||
function action_EVENT_GADGET_CREATE_23009(context, evt)
|
||
-- 将本组内变量名为 "lifter_pos_mark" 的变量设置为 0
|
||
if 0 ~= ScriptLib.SetGroupVariableValue(context, "lifter_pos_mark", 0) then
|
||
ScriptLib.PrintContextLog(context, "@@ LUA_WARNING : set_groupVariable")
|
||
return -1
|
||
end
|
||
|
||
return 0
|
||
end |