From b90671bdf54db17b1395235c7f59c007d6886483 Mon Sep 17 00:00:00 2001 From: D4rkl1ght3r <86805404+D4rkl1ght3r@users.noreply.github.com> Date: Wed, 6 Aug 2025 22:52:13 +0200 Subject: [PATCH] Update LuaMissions.lua --- EXE/REM/Lua/LuaMissions.lua | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/EXE/REM/Lua/LuaMissions.lua b/EXE/REM/Lua/LuaMissions.lua index c3310eb7..3c80be27 100644 --- a/EXE/REM/Lua/LuaMissions.lua +++ b/EXE/REM/Lua/LuaMissions.lua @@ -202,6 +202,28 @@ rem.mission.missionmessage("popup", 480000) -- Show Mission Message after rem.mission.thnsave() -- Save the thn config rem.mission.save() +-- === Rheinland Rebus Story Arc Mission 1 === +rem.mission.arc("StoryArc5") +rem.mission.create("rebus_rheinland1") -- Set mission name +rem.mission.missiontype("flyto") -- Set mission type (pve, trade, flyto) +rem.mission.flyto_targetbase("Li01_09_Base") -- Target base (mission completes when docking here and confirming popup) +rem.mission.trigger("InitState") -- Trigger: Starts immediately on mission acceptance +rem.mission.startbase("Rh05_04_Base") -- Starting base for THN +rem.mission.thnconfig("vogtland_gen", "arc_rebus1") -- THN location and name +rem.mission.thntime(60) -- THN duration in seconds +rem.mission.showpopup(471200, 471201) -- Infocard IDs for caption and content +rem.mission.missionmessage("popup", 471202) -- Message shown after popup +rem.mission.missionmessage("launch", 471203) -- Message shown after launch +rem.mission.thnsave() -- Save THN configuration +-- Optional: Second THN entity for SpaceEnter at target base +rem.mission.trigger("SpaceEnter") -- Trigger: Activates when docking at target base +rem.mission.startbase("Li01_09_Base") -- Target base for THN +rem.mission.thnconfig("newberlin_gen", "arc_rebus1") -- THN location and name +rem.mission.thntime(35) -- THN duration in seconds +rem.mission.showpopup(471200, 471204) -- Infocard IDs for caption and content +rem.mission.missionmessage("popup", 471205) -- Message shown after popup +rem.mission.thnsave() -- Save THN configuration +rem.mission.save() -- Create and configure the first mission rem.mission.arc("StoryArc20")