Add Toledo Arc Missions

This commit is contained in:
D4rkl1ght3r
2025-11-23 02:02:11 +01:00
parent 93e821daea
commit 460bb78f36
2 changed files with 39 additions and 13 deletions

View File

@@ -267,4 +267,23 @@ rem.mission.trigger("SpaceEnter") -- Trigger to setup thnconfig (InitState,
rem.mission.startbase("St01_01_base") -- Set mission startbase
rem.mission.showpopup(458780, 458788) -- Set infocard IDs for caption and content
rem.mission.missionmessage("popup", 480000) -- Show Mission Message after Popup
rem.mission.save()
-- Create and configure the first mission
rem.mission.arc("StoryArc21")
rem.mission.create("salvation") -- Set mission name
rem.mission.missiontype("pve") -- Set mission type to PVE
rem.mission.trigger("InitState") -- Trigger to setup thnconfig
rem.mission.startbase("St01_01_base") -- Set mission startbase
rem.mission.pve_enemyfaction("fc_n_grp") -- Set Enemy Faction to Nomads
rem.mission.pve_enemycount(4) -- 4 enemies per wave
rem.mission.pve_wavecount(1) -- 2 waves
rem.mission.pve_spawnmethod("fixed") -- NPC spawn Method set to fixed Location
rem.mission.pve_spawnpos(-8000, 0, -15000) -- NPC Spawn Position
rem.mission.thnconfig("toledo_gen", "arc_sinclair3") -- Set THN location and name
rem.mission.thntime(201) -- Set THN duration to 40 seconds
rem.mission.showpopup(474100, 474101) -- Set infocard IDs for caption and content
rem.mission.missionmessage("popup", 474102) -- Show Mission Message after Popup
rem.mission.missionmessage("launch", 474103)
rem.mission.thnsave() -- Save the thn config
rem.mission.save()