From 9c47bc4b6588711bad16dc328134a697c7308f69 Mon Sep 17 00:00:00 2001 From: D4rkl1ght3r <86805404+D4rkl1ght3r@users.noreply.github.com> Date: Sat, 14 Jun 2025 12:04:54 +0200 Subject: [PATCH] Update Infocards & LuaMissions --- EXE/REM/Lua/Infocards.lua | 6 +++--- EXE/REM/Lua/LuaMissions.lua | 10 +++++----- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/EXE/REM/Lua/Infocards.lua b/EXE/REM/Lua/Infocards.lua index 64ddb44d..4b3fb25d 100644 --- a/EXE/REM/Lua/Infocards.lua +++ b/EXE/REM/Lua/Infocards.lua @@ -23,7 +23,7 @@ rem.AddInfoCard(458754, "Fly to Planet Manhattan") -- Story Arc - Tour of Duty (Planet Manhattan - Li01_01_Base) rem.AddInfoCard(458760, "Story Arc - Tour of Duty") -rem.AddInfoCard(458761, [[Once again, I met diplomat Harrison. He told me the nomad incident changed the initial situations of the colonies. Political and military permissions are in transition, but also new conflicts arise. Only the highest government authorities know more about the reasons for these structural changes.Liberty's government was considering a new taxation scheme aimed at the Junkers, that would impos tariffs on their scrap businesses in exchange for protection and infrastructure support. Many in the Junker community saw this as another attempt to restrict their hard fought independence.Harrison is asking me, if I can give him an escort to Rochester Base in sector D3 in the New York System As a new diplomat he needs to arrange an agreement between Liberty and the Junkers.]]) +rem.AddInfoCard(458761, [[Once again, I met diplomat Harrison. He told me the nomad incident changed the initial situations of the colonies. Political and military permissions are in transition, but also new conflicts arise. Only the highest government authorities know more about the reasons for these structural changes.Liberty's government was considering a new taxation scheme aimed at the Junkers, that would impos tariffs on their scrap businesses in exchange for protection and infrastructure support. Many in the Junker community saw this as another attempt to restrict their hard fought independence.Harrison is asking me, if I can give him an escort to Rochester Base in sector D3 in the New York System. As a new diplomat he needs to arrange an agreement between Liberty and the Junkers.]]) rem.AddInfoCard(458762, "Fly to Rochester Base") rem.AddInfoCard(458763, "Kill all Xenos") rem.AddInfoCard(458764, [[When we arrived sector D3 a few Xenos attacked Rochester Base. We joined the fight to support the Junkers. After the threat has been eliminated, we landed on Rochster Base to start the negotiations.Harrison seems to have a good knack for it. The negotiations seems to went well.]]) @@ -50,8 +50,8 @@ rem.AddInfoCard(458789, [[California Minor requires an urgent supply of 200 water units to alleviate the drought that has been plaguing the planet for several rotations. California Minor has issued an appeal to neighboring planets and galactic organizations to provide assistance in the form of water shipments or innovative solutions to address the crisis. ]]) -rem.AddInfoCard(458792, "Buy 200 Water Units") +rem.AddInfoCard(458791, [[California Minor requires an urgent supply of 100 water units to alleviate the drought that has been plaguing the planet for several rotations. California Minor has issued an appeal to neighboring planets and galactic organizations to provide assistance in the form of water shipments or innovative solutions to address the crisis. ]]) +rem.AddInfoCard(458792, "Buy 100 Water Units") rem.AddInfoCard(458793, "Transport Water to California Minor") diff --git a/EXE/REM/Lua/LuaMissions.lua b/EXE/REM/Lua/LuaMissions.lua index 8f4ee3f4..418e910e 100644 --- a/EXE/REM/Lua/LuaMissions.lua +++ b/EXE/REM/Lua/LuaMissions.lua @@ -28,7 +28,7 @@ rem.mission.create("WaterTrade") -- Set mission name rem.mission.missiontype("trade") -- Set mission type (pve, trade, flyto) rem.mission.trade_targetbase("li02_02_base") -- Target base to sell goods (valid base nickname required) rem.mission.trade_targetitem("commodity_water") -- Commodity to trade -rem.mission.trade_targetamount(200) -- Amount to sell (scaled by group size) +rem.mission.trade_targetamount(100) -- Amount to sell (scaled by group size) rem.mission.trigger("InitState") -- Trigger: Starts immediately on mission acceptance rem.mission.startbase("Li01_01_Base") -- Starting base for THN rem.mission.thnconfig("manhattan_gen", "arc_juni") -- THN location and name @@ -66,8 +66,8 @@ rem.mission.create("reunion") -- Set mission name rem.mission.missiontype("pve") -- Set mission type to PVE rem.mission.trigger("InitState") -- Trigger to setup thnconfig (InitState, BaseEnter, SpaceEnter) rem.mission.pve_enemyfaction("fc_n_grp") -- Set Enemy Faction to Nomads -rem.mission.pve_enemycount(12) -- 4 enemies per wave -rem.mission.pve_wavecount(1) -- 2 waves +rem.mission.pve_enemycount(4) -- 4 enemies per wave +rem.mission.pve_wavecount(2) -- 1 wave rem.mission.pve_spawnmethod("fixed") -- NPC spawn Method set to fixed Location rem.mission.pve_spawnpos(-16419, 0, 74074) -- NPC Spawn Position rem.mission.startbase("Li01_01_Base") -- Set mission startbase @@ -92,8 +92,8 @@ rem.mission.create("duty") -- Set mission name rem.mission.missiontype("pve") -- Set mission type to PVE rem.mission.trigger("InitState") -- Trigger to setup thnconfig rem.mission.pve_enemyfaction("fc_x_grp") -- Set Enemy Faction to Xenos -rem.mission.pve_enemycount(12) -- 4 enemies per wave -rem.mission.pve_wavecount(1) -- 2 waves +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(-30763, 0, -60216) -- NPC Spawn Position rem.mission.startbase("Li01_01_base") -- Set mission startbase