--================================================================ -- -- 配置 -- --================================================================ -- 怪物 monsters = { { config_id = 580, monster_id = 28020102, pos = { x = 2189.6, y = 228.0, z = -1355.9 }, rot = { x = 0.0, y = 0.0, z = 0.0 }, level = 0, disableWander = true } } -- NPC npcs = { } -- 装置 gadgets = { } -- 区域 regions = { { config_id = 117, shape = RegionShape.SPHERE, radius = 12.6, pos = { x = 2163.0, y = 225.2, z = -1368.2 } } } -- 触发器 triggers = { { name = "ENTER_REGION_117", event = EventType.EVENT_ENTER_REGION, source = "", condition = "condition_EVENT_ENTER_REGION_117", action = "action_EVENT_ENTER_REGION_117" } } -- 变量 variables = { } --================================================================ -- -- 初始化配置 -- --================================================================ -- 初始化时创建 init_config = { suite = 1, rand_suite = true, npcs = { } } --================================================================ -- -- 小组配置 -- --================================================================ suites = { { -- suite_id = 0, -- description = , monsters = { }, gadgets = { }, regions = { 117 }, triggers = { "ENTER_REGION_117" }, rand_weight = 100 } } --================================================================ -- -- 触发器 -- --================================================================ -- 触发条件 function condition_EVENT_ENTER_REGION_117(context, evt) if evt.param1 ~= 117 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_117(context, evt) -- 延迟0秒刷怪 if 0 ~= ScriptLib.CreateMonster(context, { config_id = 580, delay_time = 0 }) then return -1 end return 0 end