0
0
mirror of https://gitlab.com/YuukiPS/GC-Resources.git synced 2025-04-28 09:05:26 +00:00
GC-Resources/Resources/Scripts/Scene/9/scene9_group199002060.lua
KingRainbow44 8dd3a721e5
Revert "The Great De-Local'ifying of defs and base_info"
This reverts commit 0989747b
2023-08-30 21:15:50 -04:00

85 lines
2.3 KiB
Lua

-- 基础信息
local base_info = {
group_id = 199002060
}
--================================================================
--
-- 配置
--
--================================================================
-- 怪物
monsters = {
}
-- NPC
npcs = {
}
-- 装置
gadgets = {
{ config_id = 60001, gadget_id = 70360001, pos = { x = 685.037, y = 120.000, z = -422.555 }, rot = { x = 0.000, y = 0.000, z = 0.000 }, level = 20, area_id = 401 }
}
-- 区域
regions = {
{ config_id = 60002, shape = RegionShape.SPHERE, radius = 150, pos = { x = 659.633, y = 120.000, z = -297.632 }, area_id = 401 }
}
-- 触发器
triggers = {
{ config_id = 1060002, name = "ENTER_REGION_60002", event = EventType.EVENT_ENTER_REGION, source = "", condition = "", action = "action_EVENT_ENTER_REGION_60002" }
}
-- 变量
variables = {
}
--================================================================
--
-- 初始化配置
--
--================================================================
-- 初始化时创建
init_config = {
suite = 1,
end_suite = 0,
rand_suite = false
}
--================================================================
--
-- 小组配置
--
--================================================================
suites = {
{
-- suite_id = 1,
-- description = ,
monsters = { },
gadgets = { 60001 },
regions = { 60002 },
triggers = { "ENTER_REGION_60002" },
rand_weight = 100
}
}
--================================================================
--
-- 触发器
--
--================================================================
-- 触发操作
function action_EVENT_ENTER_REGION_60002(context, evt)
if ScriptLib.CheckSceneTag(context, 9,1019 ) and ScriptLib.GetRegionEntityCount(context, {region_eid = evt.source_eid, entity_type = EntityType.AVATAR}) == 1 and ScriptLib.GetPlayerVehicleType(context, context.uid) == 2 then
ScriptLib.BeginCameraSceneLook(context, { look_pos = {x = 598,y = 273,z = -513}, duration = 3, is_force = false, is_broadcast = false, is_recover_keep_current = true, delay = 0, is_set_follow_pos =false, follow_pos = {x=0,y=0,z=0}, is_force_walk =true, is_change_play_mode = true, screen_x = 0, screen_y = 0, is_set_screenXY = false, other_params ={}, keep_rot_type = KeepRotType.KEEP_ROT_X, custom_radius = 0})
ScriptLib.ShowReminderRadius(context, 1111184, { x = 659, y = 120, z = -297}, 150)
end
return 0
end