--================================================================ -- -- 配置 -- --================================================================ -- 怪物 monsters = { { config_id = 89, monster_id = 20010301, pos = { x = 2959.3, y = 221.9, z = 303.9 }, rot = { x = 0.0, y = 0.0, z = 0.0 }, level = 20, drop_id = 303005 }, { config_id = 90, monster_id = 20010301, pos = { x = 2951.8, y = 222.6, z = 308.9 }, rot = { x = 0.0, y = 0.0, z = 0.0 }, level = 20, drop_id = 303005 } } -- NPC npcs = { } -- 装置 gadgets = { } -- 区域 regions = { { config_id = 26, shape = RegionShape.SPHERE, radius = 12, pos = { x = 2951.0, y = 221.6, z = 305.1 } } } -- 触发器 triggers = { { name = "ENTER_REGION_26", event = EventType.EVENT_ENTER_REGION, source = "", condition = "condition_EVENT_ENTER_REGION_26", action = "action_EVENT_ENTER_REGION_26", tlog_tag = "风龙_51_伏击_触发" } } -- 变量 variables = { } --================================================================ -- -- 初始化配置 -- --================================================================ -- 初始化时创建 init_config = { suite = 1, rand_suite = true, npcs = { } } --================================================================ -- -- 小组配置 -- --================================================================ suites = { { -- suite_id = 0, -- description = , monsters = { }, gadgets = { }, regions = { 26 }, triggers = { "ENTER_REGION_26" }, rand_weight = 100 } } --================================================================ -- -- 触发器 -- --================================================================ -- 触发条件 function condition_EVENT_ENTER_REGION_26(context, evt) if evt.param1 ~= 26 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_26(context, evt) -- 延迟0秒刷怪 if 0 ~= ScriptLib.CreateMonster(context, { config_id = 89, delay_time = 0 }) then return -1 end -- 延迟1秒刷怪 if 0 ~= ScriptLib.CreateMonster(context, { config_id = 90, delay_time = 1 }) then return -1 end return 0 end