diff options
author | BobTheBob <32057864+BobTheBob9@users.noreply.github.com> | 2022-01-03 23:05:44 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-03 23:05:44 +0000 |
commit | e6fe22fca4550581445054d6e9f9ffd93474f8a6 (patch) | |
tree | da9745e7cc6425e684b35d4e769ea1077a951f06 | |
parent | 6a135381d299abf4624f72ba3c4e748fe7509cdb (diff) | |
parent | 05667f6f4e0644aa3e068998168efbcd6119292d (diff) | |
download | NorthstarMods-e6fe22fca4550581445054d6e9f9ffd93474f8a6.tar.gz NorthstarMods-e6fe22fca4550581445054d6e9f9ffd93474f8a6.zip |
Merge pull request #59 from Neoministein/main
Add Panel and BT Locations for more Fastball maps
-rw-r--r-- | Northstar.Custom/mod/scripts/vscripts/gamemodes/_gamemode_fastball.gnut | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/Northstar.Custom/mod/scripts/vscripts/gamemodes/_gamemode_fastball.gnut b/Northstar.Custom/mod/scripts/vscripts/gamemodes/_gamemode_fastball.gnut index 0f04ed57..98878c3a 100644 --- a/Northstar.Custom/mod/scripts/vscripts/gamemodes/_gamemode_fastball.gnut +++ b/Northstar.Custom/mod/scripts/vscripts/gamemodes/_gamemode_fastball.gnut @@ -81,6 +81,29 @@ void function GamemodeFastball_Init() < 6001.58, -4126.61, 2252.03 >, < 0, -135, 0 >, < 3595.96, -4568.04, 2376.03 >, < 0, -135, 0 > ]) + + FastballAddBuddySpawnForLevel( "mp_complex3", TEAM_MILITIA, < -7800.67, -800.02, 510.02 >, < 0, 45.00, 0 > ) + FastballAddBuddySpawnForLevel( "mp_complex3", TEAM_IMC, < -550.95, -1626, 380 >, < 0, -127, 0 > ) + FastballAddPanelSpawnsForLevel( "mp_complex3", [ + < -3642.70, -3391.82, 645.00 >, < 0, -135.0, 0 >, + < -4429.40, -2001.04, 697.64 >, < 0, -90.00, 0 >, + < -5050.00, 811.66, 576.03 >, < 0, 42.0, 0 > + ]) + + FastballAddBuddySpawnForLevel( "mp_forwardbase_kodai", TEAM_MILITIA, < -3200.00, 1461, 1000>, < 0, 0, 0 > ) + FastballAddBuddySpawnForLevel( "mp_forwardbase_kodai", TEAM_IMC, < 3000, 1243, 944 >, < 0, 180, 0 > ) + FastballAddPanelSpawnsForLevel( "mp_forwardbase_kodai", [ + < -830, 2210, 960 >, < 0, 90.00, 0 >, + < 8, 825, 1096 >, < 0, -90.00, 0 > , + < 740 , -600, 960 >, < 0, 0, 0 > + ]) + + //Current BT fast ball points are good + FastballAddPanelSpawnsForLevel( "mp_colony02", [ + < 1374, 559, 60 >, < 0, 0.00, 0 > , + < -87, 1630, 22 >, < 0, 90.00, 0 >, + < -2167 , 448, 54 >, <0 , 90, 0 > + ]) } void function SpawnPanelsForLevel() |