mirror of
https://github.com/FlourishingWorld/hk4e.git
synced 2026-02-17 03:32:28 +08:00
更新配置表
This commit is contained in:
24
gdconf/game_data_config/lua/scene/33746/scene33746.lua
Normal file
24
gdconf/game_data_config/lua/scene/33746/scene33746.lua
Normal file
@@ -0,0 +1,24 @@
|
||||
-- 地图配置
|
||||
scene_config = {
|
||||
begin_pos = { x = -531.5, z = -519.5 },
|
||||
size = { x = 1008.4, z = 1008.4 },
|
||||
born_pos = { x = 0.000, y = -0.176, z = 18.001 },
|
||||
born_rot = { x = 0.000, y = 180.000, z = 0.000 },
|
||||
die_y = -20,
|
||||
city_id = 1,
|
||||
vision_anchor = { x = -1000.0, z = -1000.0 }
|
||||
}
|
||||
|
||||
-- 所有的区块
|
||||
blocks = { 33746 }
|
||||
|
||||
-- 所有的区块范围坐标
|
||||
block_rects = {
|
||||
{ min = { x = -531.5, z = -519.5 }, max = { x = 476.9, z = 488.9 } }
|
||||
}
|
||||
|
||||
-- Dummy Points
|
||||
dummy_points = { }
|
||||
|
||||
-- Routes
|
||||
routes_config = { }
|
||||
@@ -0,0 +1,8 @@
|
||||
-- 所有的group
|
||||
groups = {
|
||||
{ id = 233746001, refresh_id = 1, pos = { x = -2.010, y = -0.127, z = -0.941 }, forbid_monster_die_types = { "CHANGE_HP_SUB_DRAWN", "CHANGE_HP_SUB_ABYSS" } },
|
||||
{ id = 233746002, refresh_id = 1, pos = { x = 1.122, y = -0.176, z = 8.208 }, forbid_monster_die_types = { "CHANGE_HP_SUB_DRAWN", "CHANGE_HP_SUB_ABYSS" } },
|
||||
{ id = 233746003, refresh_id = 1, pos = { x = -0.154, y = -0.176, z = -9.743 }, forbid_monster_die_types = { "CHANGE_HP_SUB_DRAWN", "CHANGE_HP_SUB_ABYSS" } },
|
||||
{ id = 233746004, refresh_id = 1003, pos = { x = 5.377, y = -0.176, z = 1.013 }, forbid_monster_die_types = { "CHANGE_HP_SUB_DRAWN", "CHANGE_HP_SUB_ABYSS" } },
|
||||
{ id = 233746005, refresh_id = 1001, pos = { x = 5.377, y = -0.176, z = 1.013 }, forbid_monster_die_types = { "CHANGE_HP_SUB_DRAWN", "CHANGE_HP_SUB_ABYSS" } }
|
||||
}
|
||||
@@ -0,0 +1,91 @@
|
||||
-- 基础信息
|
||||
local base_info = {
|
||||
group_id = 233746001
|
||||
}
|
||||
|
||||
--================================================================
|
||||
--
|
||||
-- 配置
|
||||
--
|
||||
--================================================================
|
||||
|
||||
-- 怪物
|
||||
monsters = {
|
||||
}
|
||||
|
||||
-- NPC
|
||||
npcs = {
|
||||
}
|
||||
|
||||
-- 装置
|
||||
gadgets = {
|
||||
{ config_id = 1001, gadget_id = 70350053, pos = { x = -0.020, y = -0.083, z = 0.009 }, rot = { x = 0.000, y = 0.000, z = 0.000 }, level = 1 },
|
||||
{ config_id = 1002, gadget_id = 70350054, pos = { x = 0.028, y = -0.098, z = 0.031 }, rot = { x = 0.000, y = 0.000, z = 0.000 }, level = 1 }
|
||||
}
|
||||
|
||||
-- 区域
|
||||
regions = {
|
||||
}
|
||||
|
||||
-- 触发器
|
||||
triggers = {
|
||||
{ config_id = 1001003, name = "DUNGEON_SETTLE_1003", event = EventType.EVENT_DUNGEON_SETTLE, source = "", condition = "", action = "action_EVENT_DUNGEON_SETTLE_1003" }
|
||||
}
|
||||
|
||||
-- 变量
|
||||
variables = {
|
||||
}
|
||||
|
||||
--================================================================
|
||||
--
|
||||
-- 初始化配置
|
||||
--
|
||||
--================================================================
|
||||
|
||||
-- 初始化时创建
|
||||
init_config = {
|
||||
suite = 1,
|
||||
end_suite = 0,
|
||||
rand_suite = false
|
||||
}
|
||||
|
||||
--================================================================
|
||||
--
|
||||
-- 小组配置
|
||||
--
|
||||
--================================================================
|
||||
|
||||
suites = {
|
||||
{
|
||||
-- suite_id = 1,
|
||||
-- description = ,
|
||||
monsters = { },
|
||||
gadgets = { 1001, 1002 },
|
||||
regions = { },
|
||||
triggers = { "DUNGEON_SETTLE_1003" },
|
||||
rand_weight = 100
|
||||
}
|
||||
}
|
||||
|
||||
--================================================================
|
||||
--
|
||||
-- 触发器
|
||||
--
|
||||
--================================================================
|
||||
|
||||
-- 触发操作
|
||||
function action_EVENT_DUNGEON_SETTLE_1003(context, evt)
|
||||
-- 改变指定group组233746001中, configid为1001的gadget的state
|
||||
if 0 ~= ScriptLib.SetGroupGadgetStateByConfigId(context, 233746001, 1001, GadgetState.Default) then
|
||||
ScriptLib.PrintContextLog(context, "@@ LUA_WARNING : set_gadget_state_by_GroupId_ConfigId")
|
||||
return -1
|
||||
end
|
||||
|
||||
-- 改变指定group组233746001中, configid为1002的gadget的state
|
||||
if 0 ~= ScriptLib.SetGroupGadgetStateByConfigId(context, 233746001, 1002, GadgetState.Default) then
|
||||
ScriptLib.PrintContextLog(context, "@@ LUA_WARNING : set_gadget_state_by_GroupId_ConfigId")
|
||||
return -1
|
||||
end
|
||||
|
||||
return 0
|
||||
end
|
||||
@@ -0,0 +1,75 @@
|
||||
-- 基础信息
|
||||
local base_info = {
|
||||
group_id = 233746002
|
||||
}
|
||||
|
||||
--================================================================
|
||||
--
|
||||
-- 配置
|
||||
--
|
||||
--================================================================
|
||||
|
||||
-- 怪物
|
||||
monsters = {
|
||||
}
|
||||
|
||||
-- NPC
|
||||
npcs = {
|
||||
}
|
||||
|
||||
-- 装置
|
||||
gadgets = {
|
||||
{ config_id = 2001, gadget_id = 70900205, pos = { x = 0.000, y = -1.333, z = 0.000 }, rot = { x = 0.000, y = 0.000, z = 0.000 }, level = 1, state = GadgetState.GearStart },
|
||||
{ config_id = 2002, gadget_id = 70900205, pos = { x = 0.000, y = -1.333, z = 0.000 }, rot = { x = 0.000, y = 0.000, z = 0.000 }, level = 1 }
|
||||
}
|
||||
|
||||
-- 区域
|
||||
regions = {
|
||||
}
|
||||
|
||||
-- 触发器
|
||||
triggers = {
|
||||
}
|
||||
|
||||
-- 变量
|
||||
variables = {
|
||||
{ config_id = 1, name = "stage", value = 0, no_refresh = false },
|
||||
{ config_id = 2, name = "TPL_TIME", value = 0, no_refresh = false }
|
||||
}
|
||||
|
||||
--================================================================
|
||||
--
|
||||
-- 初始化配置
|
||||
--
|
||||
--================================================================
|
||||
|
||||
-- 初始化时创建
|
||||
init_config = {
|
||||
suite = 1,
|
||||
end_suite = 0,
|
||||
rand_suite = false
|
||||
}
|
||||
|
||||
--================================================================
|
||||
--
|
||||
-- 小组配置
|
||||
--
|
||||
--================================================================
|
||||
|
||||
suites = {
|
||||
{
|
||||
-- suite_id = 1,
|
||||
-- description = ,
|
||||
monsters = { },
|
||||
gadgets = { 2001, 2002 },
|
||||
regions = { },
|
||||
triggers = { },
|
||||
rand_weight = 100
|
||||
}
|
||||
}
|
||||
|
||||
--================================================================
|
||||
--
|
||||
-- 触发器
|
||||
--
|
||||
--================================================================
|
||||
@@ -0,0 +1,211 @@
|
||||
-- 基础信息
|
||||
local base_info = {
|
||||
group_id = 233746003
|
||||
}
|
||||
|
||||
--================================================================
|
||||
--
|
||||
-- 配置
|
||||
--
|
||||
--================================================================
|
||||
|
||||
-- 怪物
|
||||
monsters = {
|
||||
}
|
||||
|
||||
-- NPC
|
||||
npcs = {
|
||||
}
|
||||
|
||||
-- 装置
|
||||
gadgets = {
|
||||
{ config_id = 3001, gadget_id = 70360010, pos = { x = 0.062, y = -0.521, z = 10.109 }, rot = { x = 0.000, y = 0.000, z = 0.000 }, level = 1 }
|
||||
}
|
||||
|
||||
-- 区域
|
||||
regions = {
|
||||
}
|
||||
|
||||
-- 触发器
|
||||
triggers = {
|
||||
{ config_id = 1003002, name = "GADGET_CREATE_3002", event = EventType.EVENT_GADGET_CREATE, source = "", condition = "condition_EVENT_GADGET_CREATE_3002", action = "action_EVENT_GADGET_CREATE_3002" },
|
||||
{ config_id = 1003003, name = "SELECT_OPTION_3003", event = EventType.EVENT_SELECT_OPTION, source = "", condition = "condition_EVENT_SELECT_OPTION_3003", action = "action_EVENT_SELECT_OPTION_3003", trigger_count = 0 },
|
||||
{ config_id = 1003004, name = "SELECT_OPTION_3004", event = EventType.EVENT_SELECT_OPTION, source = "", condition = "condition_EVENT_SELECT_OPTION_3004", action = "action_EVENT_SELECT_OPTION_3004", trigger_count = 0 }
|
||||
}
|
||||
|
||||
-- 变量
|
||||
variables = {
|
||||
}
|
||||
|
||||
--================================================================
|
||||
--
|
||||
-- 初始化配置
|
||||
--
|
||||
--================================================================
|
||||
|
||||
-- 初始化时创建
|
||||
init_config = {
|
||||
suite = 1,
|
||||
end_suite = 0,
|
||||
rand_suite = false
|
||||
}
|
||||
|
||||
--================================================================
|
||||
--
|
||||
-- 小组配置
|
||||
--
|
||||
--================================================================
|
||||
|
||||
suites = {
|
||||
{
|
||||
-- suite_id = 1,
|
||||
-- description = ,
|
||||
monsters = { },
|
||||
gadgets = { 3001 },
|
||||
regions = { },
|
||||
triggers = { "GADGET_CREATE_3002", "SELECT_OPTION_3003", "SELECT_OPTION_3004" },
|
||||
rand_weight = 100
|
||||
}
|
||||
}
|
||||
|
||||
--================================================================
|
||||
--
|
||||
-- 触发器
|
||||
--
|
||||
--================================================================
|
||||
|
||||
-- 触发条件
|
||||
function condition_EVENT_GADGET_CREATE_3002(context, evt)
|
||||
if 3001 ~= evt.param1 then
|
||||
return false
|
||||
end
|
||||
|
||||
return true
|
||||
end
|
||||
|
||||
-- 触发操作
|
||||
function action_EVENT_GADGET_CREATE_3002(context, evt)
|
||||
-- 设置操作台选项
|
||||
if 0 ~= ScriptLib.SetWorktopOptionsByGroupId(context, 233746003, 3001, {175}) then
|
||||
ScriptLib.PrintContextLog(context, "@@ LUA_WARNING : set_wok_options_by_configid")
|
||||
return -1
|
||||
end
|
||||
|
||||
return 0
|
||||
end
|
||||
|
||||
-- 触发条件
|
||||
function condition_EVENT_SELECT_OPTION_3003(context, evt)
|
||||
-- 判断是gadgetid 3001 option_id 175
|
||||
if 3001 ~= evt.param1 then
|
||||
return false
|
||||
end
|
||||
|
||||
if 175 ~= evt.param2 then
|
||||
return false
|
||||
end
|
||||
|
||||
|
||||
-- 判断变量"stage"为0
|
||||
if ScriptLib.GetGroupVariableValueByGroup(context, "stage", 233746002) ~= 0 then
|
||||
return false
|
||||
end
|
||||
|
||||
return true
|
||||
end
|
||||
|
||||
-- 触发操作
|
||||
function action_EVENT_SELECT_OPTION_3003(context, evt)
|
||||
-- 爬塔是否允许使用技能( is_allow_use_skill=0或1,表示不允许或允许使用主动技能)
|
||||
if 0 ~= ScriptLib.SetIsAllowUseSkill(context, 1) then
|
||||
ScriptLib.PrintContextLog(context, "@@ LUA_WARNING : tower_allow_use_skill")
|
||||
return -1
|
||||
end
|
||||
|
||||
-- 添加suite2的新内容
|
||||
ScriptLib.AddExtraGroupSuite(context, 233746004, 2)
|
||||
|
||||
-- 删除指定group: 233746003 ;指定config:3001;物件身上指定option:175;
|
||||
if 0 ~= ScriptLib.DelWorktopOptionByGroupId(context, 233746003, 3001, 175) then
|
||||
ScriptLib.PrintContextLog(context, "@@ LUA_WARNING : del_work_options_by_group_configId")
|
||||
return -1
|
||||
end
|
||||
|
||||
-- 改变指定group组233746003中, configid为3001的gadget的state
|
||||
if 0 ~= ScriptLib.SetGroupGadgetStateByConfigId(context, 233746003, 3001, GadgetState.GearStop) then
|
||||
ScriptLib.PrintContextLog(context, "@@ LUA_WARNING : set_gadget_state_by_GroupId_ConfigId")
|
||||
return -1
|
||||
end
|
||||
|
||||
-- 改变指定group组233746001中, configid为1001的gadget的state
|
||||
if 0 ~= ScriptLib.SetGroupGadgetStateByConfigId(context, 233746001, 1001, GadgetState.GearStart) then
|
||||
ScriptLib.PrintContextLog(context, "@@ LUA_WARNING : set_gadget_state_by_GroupId_ConfigId")
|
||||
return -1
|
||||
end
|
||||
|
||||
-- 改变指定group组233746001中, configid为1002的gadget的state
|
||||
if 0 ~= ScriptLib.SetGroupGadgetStateByConfigId(context, 233746001, 1002, GadgetState.GearStart) then
|
||||
ScriptLib.PrintContextLog(context, "@@ LUA_WARNING : set_gadget_state_by_GroupId_ConfigId")
|
||||
return -1
|
||||
end
|
||||
|
||||
return 0
|
||||
end
|
||||
|
||||
-- 触发条件
|
||||
function condition_EVENT_SELECT_OPTION_3004(context, evt)
|
||||
-- 判断是gadgetid 3001 option_id 176
|
||||
if 3001 ~= evt.param1 then
|
||||
return false
|
||||
end
|
||||
|
||||
if 176 ~= evt.param2 then
|
||||
return false
|
||||
end
|
||||
|
||||
|
||||
-- 判断变量"stage"为1
|
||||
if ScriptLib.GetGroupVariableValueByGroup(context, "stage", 233746002) ~= 1 then
|
||||
return false
|
||||
end
|
||||
|
||||
return true
|
||||
end
|
||||
|
||||
-- 触发操作
|
||||
function action_EVENT_SELECT_OPTION_3004(context, evt)
|
||||
-- 爬塔是否允许使用技能( is_allow_use_skill=0或1,表示不允许或允许使用主动技能)
|
||||
if 0 ~= ScriptLib.SetIsAllowUseSkill(context, 1) then
|
||||
ScriptLib.PrintContextLog(context, "@@ LUA_WARNING : tower_allow_use_skill")
|
||||
return -1
|
||||
end
|
||||
|
||||
-- 添加suite2的新内容
|
||||
ScriptLib.AddExtraGroupSuite(context, 233746005, 2)
|
||||
|
||||
-- 删除指定group: 233746003 ;指定config:3001;物件身上指定option:176;
|
||||
if 0 ~= ScriptLib.DelWorktopOptionByGroupId(context, 233746003, 3001, 176) then
|
||||
ScriptLib.PrintContextLog(context, "@@ LUA_WARNING : del_work_options_by_group_configId")
|
||||
return -1
|
||||
end
|
||||
|
||||
-- 改变指定group组233746003中, configid为3001的gadget的state
|
||||
if 0 ~= ScriptLib.SetGroupGadgetStateByConfigId(context, 233746003, 3001, GadgetState.GearStop) then
|
||||
ScriptLib.PrintContextLog(context, "@@ LUA_WARNING : set_gadget_state_by_GroupId_ConfigId")
|
||||
return -1
|
||||
end
|
||||
|
||||
-- 改变指定group组233746001中, configid为1001的gadget的state
|
||||
if 0 ~= ScriptLib.SetGroupGadgetStateByConfigId(context, 233746001, 1001, GadgetState.GearStart) then
|
||||
ScriptLib.PrintContextLog(context, "@@ LUA_WARNING : set_gadget_state_by_GroupId_ConfigId")
|
||||
return -1
|
||||
end
|
||||
|
||||
-- 改变指定group组233746001中, configid为1002的gadget的state
|
||||
if 0 ~= ScriptLib.SetGroupGadgetStateByConfigId(context, 233746001, 1002, GadgetState.GearStart) then
|
||||
ScriptLib.PrintContextLog(context, "@@ LUA_WARNING : set_gadget_state_by_GroupId_ConfigId")
|
||||
return -1
|
||||
end
|
||||
|
||||
return 0
|
||||
end
|
||||
@@ -0,0 +1,227 @@
|
||||
-- 基础信息
|
||||
local base_info = {
|
||||
group_id = 233746004
|
||||
}
|
||||
|
||||
--================================================================
|
||||
--
|
||||
-- 配置
|
||||
--
|
||||
--================================================================
|
||||
|
||||
-- 怪物
|
||||
monsters = {
|
||||
{ config_id = 4001, monster_id = 24021101, pos = { x = 0.029, y = -0.102, z = -0.111 }, rot = { x = 0.000, y = 0.000, z = 0.000 }, level = 1, disableWander = true }
|
||||
}
|
||||
|
||||
-- NPC
|
||||
npcs = {
|
||||
}
|
||||
|
||||
-- 装置
|
||||
gadgets = {
|
||||
{ config_id = 4010, gadget_id = 70900205, pos = { x = 6.204, y = -1.386, z = 3.136 }, rot = { x = 0.000, y = 0.000, z = 0.000 }, level = 1 }
|
||||
}
|
||||
|
||||
-- 区域
|
||||
regions = {
|
||||
}
|
||||
|
||||
-- 触发器
|
||||
triggers = {
|
||||
{ config_id = 1004002, name = "ANY_MONSTER_DIE_4002", event = EventType.EVENT_ANY_MONSTER_DIE, source = "", condition = "condition_EVENT_ANY_MONSTER_DIE_4002", action = "action_EVENT_ANY_MONSTER_DIE_4002" },
|
||||
{ config_id = 1004003, name = "ANY_MONSTER_LIVE_4003", event = EventType.EVENT_ANY_MONSTER_LIVE, source = "", condition = "condition_EVENT_ANY_MONSTER_LIVE_4003", action = "action_EVENT_ANY_MONSTER_LIVE_4003" },
|
||||
{ config_id = 1004014, name = "CHALLENGE_SUCCESS_4014", event = EventType.EVENT_CHALLENGE_SUCCESS, source = "1", condition = "", action = "action_EVENT_CHALLENGE_SUCCESS_4014" },
|
||||
{ config_id = 1004015, name = "CHALLENGE_FAIL_4015", event = EventType.EVENT_CHALLENGE_FAIL, source = "1", condition = "", action = "action_EVENT_CHALLENGE_FAIL_4015" }
|
||||
}
|
||||
|
||||
-- 变量
|
||||
variables = {
|
||||
{ config_id = 1, name = "monster_wave", value = 0, no_refresh = false }
|
||||
}
|
||||
|
||||
--================================================================
|
||||
--
|
||||
-- 初始化配置
|
||||
--
|
||||
--================================================================
|
||||
|
||||
-- 初始化时创建
|
||||
init_config = {
|
||||
suite = 1,
|
||||
end_suite = 0,
|
||||
rand_suite = false
|
||||
}
|
||||
|
||||
--================================================================
|
||||
--
|
||||
-- 小组配置
|
||||
--
|
||||
--================================================================
|
||||
|
||||
suites = {
|
||||
{
|
||||
-- suite_id = 1,
|
||||
-- description = ,
|
||||
monsters = { },
|
||||
gadgets = { 4010 },
|
||||
regions = { },
|
||||
triggers = { },
|
||||
rand_weight = 100
|
||||
},
|
||||
{
|
||||
-- suite_id = 2,
|
||||
-- description = ,
|
||||
monsters = { 4001 },
|
||||
gadgets = { 4010 },
|
||||
regions = { },
|
||||
triggers = { "ANY_MONSTER_DIE_4002", "ANY_MONSTER_LIVE_4003", "CHALLENGE_SUCCESS_4014", "CHALLENGE_FAIL_4015" },
|
||||
rand_weight = 100
|
||||
},
|
||||
{
|
||||
-- suite_id = 3,
|
||||
-- description = ,
|
||||
monsters = { },
|
||||
gadgets = { 4010 },
|
||||
regions = { },
|
||||
triggers = { "CHALLENGE_SUCCESS_4014", "CHALLENGE_FAIL_4015" },
|
||||
rand_weight = 100
|
||||
},
|
||||
{
|
||||
-- suite_id = 4,
|
||||
-- description = ,
|
||||
monsters = { },
|
||||
gadgets = { },
|
||||
regions = { },
|
||||
triggers = { },
|
||||
rand_weight = 100
|
||||
}
|
||||
}
|
||||
|
||||
--================================================================
|
||||
--
|
||||
-- 触发器
|
||||
--
|
||||
--================================================================
|
||||
|
||||
-- 触发条件
|
||||
function condition_EVENT_ANY_MONSTER_DIE_4002(context, evt)
|
||||
-- 判断剩余怪物数量是否是0
|
||||
if ScriptLib.GetGroupMonsterCount(context) ~= 0 then
|
||||
return false
|
||||
end
|
||||
|
||||
-- 判断变量"monster_wave"为1
|
||||
if ScriptLib.GetGroupVariableValue(context, "monster_wave") ~= 1 then
|
||||
return false
|
||||
end
|
||||
|
||||
return true
|
||||
end
|
||||
|
||||
-- 触发操作
|
||||
function action_EVENT_ANY_MONSTER_DIE_4002(context, evt)
|
||||
-- 将本组内变量名为 "monster_wave" 的变量设置为 2
|
||||
if 0 ~= ScriptLib.SetGroupVariableValue(context, "monster_wave", 2) then
|
||||
ScriptLib.PrintContextLog(context, "@@ LUA_WARNING : set_groupVariable")
|
||||
return -1
|
||||
end
|
||||
|
||||
return 0
|
||||
end
|
||||
|
||||
-- 触发条件
|
||||
function condition_EVENT_ANY_MONSTER_LIVE_4003(context, evt)
|
||||
if 4001 ~= evt.param1 then
|
||||
return false
|
||||
end
|
||||
|
||||
return true
|
||||
end
|
||||
|
||||
-- 触发操作
|
||||
function action_EVENT_ANY_MONSTER_LIVE_4003(context, evt)
|
||||
-- 针对当前group内变量名为 "monster_wave" 的变量,进行修改,变化值为 1
|
||||
if 0 ~= ScriptLib.ChangeGroupVariableValue(context, "monster_wave", 1) then
|
||||
ScriptLib.PrintContextLog(context, "@@ LUA_WARNING : change_GroupVariable")
|
||||
return -1
|
||||
end
|
||||
|
||||
-- 创建编号为1(该挑战的识别id),挑战内容为197的区域挑战,具体参数填写方式,见DungeonChallengeData表中的注释,所有填写的值都必须是int类型
|
||||
if 0 ~= ScriptLib.ActiveChallenge(context, 1, 197, 600, 233746004, 1, 0) then
|
||||
ScriptLib.PrintContextLog(context, "@@ LUA_WARNING : active_challenge")
|
||||
return -1
|
||||
end
|
||||
|
||||
return 0
|
||||
end
|
||||
|
||||
-- 触发操作
|
||||
function action_EVENT_CHALLENGE_SUCCESS_4014(context, evt)
|
||||
-- 将剩余时间记录在触发此challenge的group变量TPL_TIME中
|
||||
if 0 ~= ScriptLib.SetGroupVariableValueByGroup(context, "TPL_TIME", evt.param2, 233746002) then
|
||||
ScriptLib.PrintContextLog(context, "@@ LUA_WARNING : save_challenge_remainTime")
|
||||
return -1
|
||||
end
|
||||
|
||||
-- 爬塔是否允许使用技能( is_allow_use_skill=0或1,表示不允许或允许使用主动技能)
|
||||
if 0 ~= ScriptLib.SetIsAllowUseSkill(context, 0) then
|
||||
ScriptLib.PrintContextLog(context, "@@ LUA_WARNING : tower_allow_use_skill")
|
||||
return -1
|
||||
end
|
||||
|
||||
-- 将本组内变量名为 "stage" 的变量设置为 1
|
||||
if 0 ~= ScriptLib.SetGroupVariableValueByGroup(context, "stage", 1, 233746002) then
|
||||
ScriptLib.PrintContextLog(context, "@@ LUA_WARNING : set_groupVariable_by_group")
|
||||
return -1
|
||||
end
|
||||
|
||||
-- 爬塔更换队伍2
|
||||
if 0 ~= ScriptLib.TowerMirrorTeamSetUp(context, 2) then
|
||||
ScriptLib.PrintContextLog(context, "@@ LUA_WARNING : tower_team_setup")
|
||||
return -1
|
||||
end
|
||||
|
||||
-- 改变指定group组233746003中, configid为3001的gadget的state
|
||||
if 0 ~= ScriptLib.SetGroupGadgetStateByConfigId(context, 233746003, 3001, GadgetState.Default) then
|
||||
ScriptLib.PrintContextLog(context, "@@ LUA_WARNING : set_gadget_state_by_GroupId_ConfigId")
|
||||
return -1
|
||||
end
|
||||
|
||||
-- 设置操作台选项
|
||||
if 0 ~= ScriptLib.SetWorktopOptionsByGroupId(context, 233746003, 3001, {176}) then
|
||||
ScriptLib.PrintContextLog(context, "@@ LUA_WARNING : set_wok_options_by_configid")
|
||||
return -1
|
||||
end
|
||||
|
||||
-- 改变指定group组233746001中, configid为1001的gadget的state
|
||||
if 0 ~= ScriptLib.SetGroupGadgetStateByConfigId(context, 233746001, 1001, GadgetState.Default) then
|
||||
ScriptLib.PrintContextLog(context, "@@ LUA_WARNING : set_gadget_state_by_GroupId_ConfigId")
|
||||
return -1
|
||||
end
|
||||
|
||||
-- 改变指定group组233746001中, configid为1002的gadget的state
|
||||
if 0 ~= ScriptLib.SetGroupGadgetStateByConfigId(context, 233746001, 1002, GadgetState.Default) then
|
||||
ScriptLib.PrintContextLog(context, "@@ LUA_WARNING : set_gadget_state_by_GroupId_ConfigId")
|
||||
return -1
|
||||
end
|
||||
|
||||
return 0
|
||||
end
|
||||
|
||||
-- 触发操作
|
||||
function action_EVENT_CHALLENGE_FAIL_4015(context, evt)
|
||||
-- 重新生成指定group,指定suite
|
||||
if 0 ~= ScriptLib.RefreshGroup(context, { group_id = 233746004, suite = 1 }) then
|
||||
ScriptLib.PrintContextLog(context, "@@ LUA_WARNING : refresh_group_to_suite")
|
||||
return -1
|
||||
end
|
||||
|
||||
-- 地城失败结算
|
||||
if 0 ~= ScriptLib.CauseDungeonFail(context) then
|
||||
ScriptLib.PrintContextLog(context, "@@ LUA_WARNING : cause_dungeonfail")
|
||||
return -1
|
||||
end
|
||||
|
||||
return 0
|
||||
end
|
||||
@@ -0,0 +1,187 @@
|
||||
-- 基础信息
|
||||
local base_info = {
|
||||
group_id = 233746005
|
||||
}
|
||||
|
||||
--================================================================
|
||||
--
|
||||
-- 配置
|
||||
--
|
||||
--================================================================
|
||||
|
||||
-- 怪物
|
||||
monsters = {
|
||||
{ config_id = 5001, monster_id = 25410101, pos = { x = -0.021, y = -0.102, z = -4.807 }, rot = { x = 0.000, y = 0.000, z = 0.000 }, level = 1, disableWander = true },
|
||||
{ config_id = 5002, monster_id = 23010401, pos = { x = 0.010, y = -0.102, z = -0.029 }, rot = { x = 0.000, y = 0.000, z = 0.000 }, level = 1, disableWander = true },
|
||||
{ config_id = 5007, monster_id = 25210501, pos = { x = 5.036, y = -0.102, z = -3.012 }, rot = { x = 0.000, y = 0.000, z = 0.000 }, level = 1, disableWander = true },
|
||||
{ config_id = 5009, monster_id = 25210501, pos = { x = -5.040, y = -0.102, z = -3.012 }, rot = { x = 0.000, y = 0.000, z = 0.000 }, level = 1, disableWander = true }
|
||||
}
|
||||
|
||||
-- NPC
|
||||
npcs = {
|
||||
}
|
||||
|
||||
-- 装置
|
||||
gadgets = {
|
||||
{ config_id = 5011, gadget_id = 70900205, pos = { x = 6.204, y = -1.386, z = 3.136 }, rot = { x = 0.000, y = 0.000, z = 0.000 }, level = 1 }
|
||||
}
|
||||
|
||||
-- 区域
|
||||
regions = {
|
||||
}
|
||||
|
||||
-- 触发器
|
||||
triggers = {
|
||||
{ config_id = 1005004, name = "ANY_MONSTER_LIVE_5004", event = EventType.EVENT_ANY_MONSTER_LIVE, source = "", condition = "condition_EVENT_ANY_MONSTER_LIVE_5004", action = "action_EVENT_ANY_MONSTER_LIVE_5004" },
|
||||
{ config_id = 1005005, name = "ANY_MONSTER_DIE_5005", event = EventType.EVENT_ANY_MONSTER_DIE, source = "", condition = "condition_EVENT_ANY_MONSTER_DIE_5005", action = "action_EVENT_ANY_MONSTER_DIE_5005" },
|
||||
{ config_id = 1005015, name = "CHALLENGE_SUCCESS_5015", event = EventType.EVENT_CHALLENGE_SUCCESS, source = "2", condition = "", action = "action_EVENT_CHALLENGE_SUCCESS_5015" },
|
||||
{ config_id = 1005016, name = "CHALLENGE_FAIL_5016", event = EventType.EVENT_CHALLENGE_FAIL, source = "2", condition = "", action = "action_EVENT_CHALLENGE_FAIL_5016" }
|
||||
}
|
||||
|
||||
-- 变量
|
||||
variables = {
|
||||
{ config_id = 1, name = "monster_wave", value = 0, no_refresh = false }
|
||||
}
|
||||
|
||||
--================================================================
|
||||
--
|
||||
-- 初始化配置
|
||||
--
|
||||
--================================================================
|
||||
|
||||
-- 初始化时创建
|
||||
init_config = {
|
||||
suite = 1,
|
||||
end_suite = 0,
|
||||
rand_suite = false
|
||||
}
|
||||
|
||||
--================================================================
|
||||
--
|
||||
-- 小组配置
|
||||
--
|
||||
--================================================================
|
||||
|
||||
suites = {
|
||||
{
|
||||
-- suite_id = 1,
|
||||
-- description = ,
|
||||
monsters = { },
|
||||
gadgets = { 5011 },
|
||||
regions = { },
|
||||
triggers = { },
|
||||
rand_weight = 100
|
||||
},
|
||||
{
|
||||
-- suite_id = 2,
|
||||
-- description = suite_2,
|
||||
monsters = { 5001, 5002, 5007, 5009 },
|
||||
gadgets = { 5011 },
|
||||
regions = { },
|
||||
triggers = { "ANY_MONSTER_LIVE_5004", "ANY_MONSTER_DIE_5005", "CHALLENGE_SUCCESS_5015", "CHALLENGE_FAIL_5016" },
|
||||
rand_weight = 100
|
||||
},
|
||||
{
|
||||
-- suite_id = 3,
|
||||
-- description = ,
|
||||
monsters = { },
|
||||
gadgets = { },
|
||||
regions = { },
|
||||
triggers = { },
|
||||
rand_weight = 100
|
||||
}
|
||||
}
|
||||
|
||||
--================================================================
|
||||
--
|
||||
-- 触发器
|
||||
--
|
||||
--================================================================
|
||||
|
||||
-- 触发条件
|
||||
function condition_EVENT_ANY_MONSTER_LIVE_5004(context, evt)
|
||||
if 5001 ~= evt.param1 then
|
||||
return false
|
||||
end
|
||||
|
||||
return true
|
||||
end
|
||||
|
||||
-- 触发操作
|
||||
function action_EVENT_ANY_MONSTER_LIVE_5004(context, evt)
|
||||
-- 创建编号为2(该挑战的识别id),挑战内容为198的区域挑战,param1必须为时间
|
||||
-- 从233746002的变量TPL_TIME中取出对应值并开启挑战
|
||||
local tpl_time = ScriptLib.GetGroupVariableValueByGroup(context, "TPL_TIME", 233746002)
|
||||
if tpl_time == nil or tpl_time < 0 then
|
||||
ScriptLib.PrintContextLog(context, "@@ LUA_WARNING : active_challenge_by_remainTime")
|
||||
return -1
|
||||
elseif tpl_time < 1 then
|
||||
tpl_time = 0
|
||||
end
|
||||
if 0 ~= ScriptLib.ActiveChallenge(context, 2, 198, tpl_time, 233746005, 4, 0) then
|
||||
ScriptLib.PrintContextLog(context, "@@ LUA_WARNING : active_challenge_by_remainTime")
|
||||
return -1
|
||||
end
|
||||
|
||||
-- 针对当前group内变量名为 "monster_wave" 的变量,进行修改,变化值为 1
|
||||
if 0 ~= ScriptLib.ChangeGroupVariableValue(context, "monster_wave", 1) then
|
||||
ScriptLib.PrintContextLog(context, "@@ LUA_WARNING : change_GroupVariable")
|
||||
return -1
|
||||
end
|
||||
|
||||
return 0
|
||||
end
|
||||
|
||||
-- 触发条件
|
||||
function condition_EVENT_ANY_MONSTER_DIE_5005(context, evt)
|
||||
-- 判断剩余怪物数量是否是0
|
||||
if ScriptLib.GetGroupMonsterCount(context) ~= 0 then
|
||||
return false
|
||||
end
|
||||
|
||||
-- 判断变量"monster_wave"为1
|
||||
if ScriptLib.GetGroupVariableValue(context, "monster_wave") ~= 1 then
|
||||
return false
|
||||
end
|
||||
|
||||
return true
|
||||
end
|
||||
|
||||
-- 触发操作
|
||||
function action_EVENT_ANY_MONSTER_DIE_5005(context, evt)
|
||||
-- 将本组内变量名为 "monster_wave" 的变量设置为 2
|
||||
if 0 ~= ScriptLib.SetGroupVariableValue(context, "monster_wave", 2) then
|
||||
ScriptLib.PrintContextLog(context, "@@ LUA_WARNING : set_groupVariable")
|
||||
return -1
|
||||
end
|
||||
|
||||
return 0
|
||||
end
|
||||
|
||||
-- 触发操作
|
||||
function action_EVENT_CHALLENGE_SUCCESS_5015(context, evt)
|
||||
-- 将本组内变量名为 "stage" 的变量设置为 2
|
||||
if 0 ~= ScriptLib.SetGroupVariableValueByGroup(context, "stage", 2, 233746002) then
|
||||
ScriptLib.PrintContextLog(context, "@@ LUA_WARNING : set_groupVariable_by_group")
|
||||
return -1
|
||||
end
|
||||
|
||||
return 0
|
||||
end
|
||||
|
||||
-- 触发操作
|
||||
function action_EVENT_CHALLENGE_FAIL_5016(context, evt)
|
||||
-- 重新生成指定group,指定suite
|
||||
if 0 ~= ScriptLib.RefreshGroup(context, { group_id = 233746005, suite = 1 }) then
|
||||
ScriptLib.PrintContextLog(context, "@@ LUA_WARNING : refresh_group_to_suite")
|
||||
return -1
|
||||
end
|
||||
|
||||
-- 地城失败结算
|
||||
if 0 ~= ScriptLib.CauseDungeonFail(context) then
|
||||
ScriptLib.PrintContextLog(context, "@@ LUA_WARNING : cause_dungeonfail")
|
||||
return -1
|
||||
end
|
||||
|
||||
return 0
|
||||
end
|
||||
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"areas": {},
|
||||
"doors": {},
|
||||
"entities": {},
|
||||
"forces": {},
|
||||
"points": {},
|
||||
"transRadius": 0.0
|
||||
}
|
||||
Reference in New Issue
Block a user