Update Infocards & LuaMissions

This commit is contained in:
D4rkl1ght3r
2025-08-07 23:35:55 +02:00
parent b90671bdf5
commit 6d4dbf4bcd
2 changed files with 83 additions and 80 deletions

View File

@@ -5,7 +5,7 @@
-- Triggers change the config.lua
-- Tutorial Mission ===
rem.mission.arc("Tutorial Liberty")
--rem.mission.arc("Tutorial Liberty")
rem.mission.create("tutorial") -- Set mission name
rem.mission.missiontype("flyto") -- Set mission type to PVE
rem.mission.flyto_targetbase("Li01_10_Base") -- Target base (mission completes when docking here and confirming popup)
@@ -13,13 +13,89 @@ rem.mission.trigger("InitState") -- Trigger to setup thnconfig (InitSta
rem.mission.startbase("Li01_01_Base") -- Set mission startbase
rem.mission.thnconfig("manhattan_gen", "arc_tutorial") -- Set THN location and name
rem.mission.thntime(32) -- Set THN duration to x seconds
rem.mission.showpopup(465001, 465002) -- Set infocard IDs for caption and content
rem.mission.missionmessage("popup", 465003) -- Show Mission Message after Popup
rem.mission.missionmessage("launch", 465004) -- Show Mission Message after launch
rem.mission.showpopup(475001, 475002) -- Set infocard IDs for caption and content
rem.mission.missionmessage("popup", 475003) -- Show Mission Message after Popup
rem.mission.missionmessage("launch", 475004) -- Show Mission Message after launch
rem.mission.trigger("SpaceEnter") -- Trigger: Activates when docking at target base
rem.mission.thnsave() -- Save the thn config
rem.mission.save() -- Finalize and save mission to the list
-- Create and configure the first mission
-- rem.mission.arc("StoryArc1")
rem.mission.create("rebus_liberty2") -- Set mission name
rem.mission.missiontype("pve") -- Set mission type to PVE
rem.mission.trigger("InitState") -- Trigger to setup thnconfig
rem.mission.startbase("Li01_12_base") -- Set mission startbase
rem.mission.pve_enemyfaction("li_p_grp") -- Set Enemy Faction to Xenos
rem.mission.pve_enemycount(4) -- 4 enemies per wave
rem.mission.pve_wavecount(2) -- 2 waves
rem.mission.pve_spawnmethod("fixed") -- NPC spawn Method set to fixed Location
rem.mission.pve_spawnpos(-50000, 0, 5000) -- NPC Spawn Position
rem.mission.thnconfig("buffalo_gen", "arc_rebus3") -- Set THN location and name
rem.mission.thntime(57) -- Set THN duration to 57 seconds
rem.mission.showpopup(459010, 459011) -- Set infocard IDs for caption and content
rem.mission.missionmessage("popup", 459012) -- Show Mission Message after Popup
rem.mission.missionmessage("launch", 459013)
rem.mission.thnsave()
--rem.mission.trigger("SpaceEnter") -- Trigger to setup thnconfig (InitState, BaseEnter, SpaceEnter)
--rem.mission.thnconfig("buffalo_gen", "arc_rebus4") -- Set THN location and name
--rem.mission.thntime(20) -- Set THN duration to 20 seconds
--rem.mission.thnsave()
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("Rh01_01_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(67) -- 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("Rh01_01_Base") -- Target base for THN
rem.mission.thnconfig("newberlin_gen", "arc_rebus1") -- THN location and name
rem.mission.thntime(46) -- 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.missionmessage("launch", 471206)
rem.mission.thnsave() -- Save THN configuration
rem.mission.save()
-- Create and configure the first mission
-- rem.mission.arc("StoryArc3")
rem.mission.create("rebus_kusari1") -- Set mission name
rem.mission.missiontype("flyto") -- Set mission type to FlyTo
rem.mission.flyto_targetbase("Ku05_02_Base") -- Target base (mission completes when docking here and confirming popup)
rem.mission.trigger("InitState") -- Trigger to setup thnconfig
rem.mission.startbase("Ku06_01_base") -- Set mission startbase
rem.mission.thnconfig("kyoto_gen", "arc_rebus1") -- Set THN location and name
rem.mission.thntime(61) -- Set THN duration to 59 seconds
rem.mission.showpopup(471100, 471101) -- Set infocard IDs for caption and content
rem.mission.missionmessage("popup", 471102) -- Show Mission Message after Popup
rem.mission.missionmessage("launch", 471103)
rem.mission.thnsave()
rem.mission.trigger("SpaceEnter") -- Trigger to setup thnconfig (InitState, BaseEnter, SpaceEnter)
rem.mission.startbase("ku05_02_base") -- Set mission startbase
rem.mission.thnconfig("ainu_gen", "arc_rebus1") -- Set THN location and name
rem.mission.thntime(120)
rem.mission.showpopup(471100, 471104) -- Set infocard IDs for caption and content
rem.mission.missionmessage("popup", 471105) -- Show Mission Message after Popup
rem.mission.missionmessage("launch", 471106)
rem.mission.thnsave() -- Save the thn config
-- rem.mission.startbase("ku05_02_base") -- Set mission startbase
-- rem.mission.thnconfig("kyoto_gen", "arc_rebus2") -- Set THN location and name
-- rem.mission.thntime(13) -- Set THN duration to 44 seconds
-- rem.mission.showpopup(471100, 471107) -- Set infocard IDs for caption and content
-- rem.mission.missionmessage("popup", 480000) -- Show Mission Message after Popup
-- rem.mission.thnsave() -- Save the thn config
rem.mission.save()
-- === PVE Mission ===
rem.mission.create("XenoHunt") -- Set mission name
rem.mission.missiontype("pve") -- Set mission type (pve, trade, flyto)
@@ -151,79 +227,6 @@ rem.mission.missionmessage("popup", 480000) -- Show Mission Message after
rem.mission.thnsave() -- Save the thn config
rem.mission.save()
-- Create and configure the first mission
rem.mission.arc("StoryArc1")
rem.mission.create("rebus_liberty2") -- Set mission name
rem.mission.missiontype("pve") -- Set mission type to PVE
rem.mission.trigger("InitState") -- Trigger to setup thnconfig
rem.mission.startbase("Li01_12_base") -- Set mission startbase
rem.mission.pve_enemyfaction("li_p_grp") -- Set Enemy Faction to Xenos
rem.mission.pve_enemycount(4) -- 4 enemies per wave
rem.mission.pve_wavecount(2) -- 2 waves
rem.mission.pve_spawnmethod("fixed") -- NPC spawn Method set to fixed Location
rem.mission.pve_spawnpos(-50000, 0, 5000) -- NPC Spawn Position
rem.mission.thnconfig("buffalo_gen", "arc_rebus3") -- Set THN location and name
rem.mission.thntime(57) -- Set THN duration to 57 seconds
rem.mission.showpopup(459010, 459011) -- Set infocard IDs for caption and content
rem.mission.missionmessage("popup", 459012) -- Show Mission Message after Popup
rem.mission.missionmessage("launch", 459013)
rem.mission.thnsave()
rem.mission.trigger("SpaceEnter") -- Trigger to setup thnconfig (InitState, BaseEnter, SpaceEnter)
rem.mission.thnconfig("buffalo_gen", "arc_rebus4") -- Set THN location and name
rem.mission.thntime(20) -- Set THN duration to 20 seconds
rem.mission.thnsave()
rem.mission.save()
-- Create and configure the first mission
rem.mission.arc("StoryArc3")
rem.mission.create("rebus_kusari1") -- Set mission name
rem.mission.missiontype("flyto") -- Set mission type to PVE
rem.mission.trigger("InitState") -- Trigger to setup thnconfig
rem.mission.startbase("Ku06_01_base") -- Set mission startbase
rem.mission.thnconfig("kyoto_gen", "arc_rebus1") -- Set THN location and name
rem.mission.thntime(61) -- Set THN duration to 59 seconds
rem.mission.showpopup(471100, 471101) -- Set infocard IDs for caption and content
rem.mission.missionmessage("popup", 471102) -- Show Mission Message after Popup
rem.mission.missionmessage("launch", 471103)
rem.mission.thnsave()
rem.mission.trigger("SpaceEnter") -- Trigger to setup thnconfig (InitState, BaseEnter, SpaceEnter)
rem.mission.startbase("ku05_02_base") -- Set mission startbase
rem.mission.thnconfig("ainu_gen", "arc_rebus1") -- Set THN location and name
rem.mission.thntime(43)
rem.mission.showpopup(471100, 471104) -- Set infocard IDs for caption and content
rem.mission.missionmessage("popup", 471105) -- Show Mission Message after Popup
rem.mission.missionmessage("launch", 471106)
rem.mission.thnsave() -- Save the thn config
rem.mission.startbase("Ku06_01_base") -- Set mission startbase
rem.mission.thnconfig("kyoto_gen", "arc_rebus2") -- Set THN location and name
rem.mission.thntime(13) -- Set THN duration to 44 seconds
rem.mission.showpopup(471100, 471107) -- Set infocard IDs for caption and content
rem.mission.missionmessage("popup", 480000) -- Show Mission Message after Popup
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")