Update LuaMissions.lua

This commit is contained in:
D4rkl1ght3r
2025-08-06 22:52:13 +02:00
parent 9b8392622f
commit b90671bdf5

View File

@@ -202,6 +202,28 @@ rem.mission.missionmessage("popup", 480000) -- Show Mission Message after
rem.mission.thnsave() -- Save the thn config rem.mission.thnsave() -- Save the thn config
rem.mission.save() 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 -- Create and configure the first mission
rem.mission.arc("StoryArc20") rem.mission.arc("StoryArc20")