diff options
author | BobTheBob <32057864+BobTheBob9@users.noreply.github.com> | 2022-01-10 01:12:17 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-10 01:12:17 +0000 |
commit | ca0f2065d8d96f6b3d2045665002a44ba0649f56 (patch) | |
tree | 70d3244ca1df912ebf94a95890a75ebb938a6318 | |
parent | 706f45bb088642c8bbd567d646274e9d4ca519f7 (diff) | |
parent | 8b8219d1d5a577a75dc10d3b97b4083b78385919 (diff) | |
download | NorthstarMods-ca0f2065d8d96f6b3d2045665002a44ba0649f56.tar.gz NorthstarMods-ca0f2065d8d96f6b3d2045665002a44ba0649f56.zip |
Merge pull request #83 from GeckoEidechse/fastball-panels-glitch-relic
Add Fastball locations for Glitch and Relic
-rw-r--r-- | Northstar.Custom/mod/scripts/vscripts/gamemodes/_gamemode_fastball.gnut | 16 |
1 files changed, 16 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 405ef16e..a5348498 100644 --- a/Northstar.Custom/mod/scripts/vscripts/gamemodes/_gamemode_fastball.gnut +++ b/Northstar.Custom/mod/scripts/vscripts/gamemodes/_gamemode_fastball.gnut @@ -120,6 +120,22 @@ void function GamemodeFastball_Init() < -87, 1630, 22 >, < 0, 90.00, 0 >, < -2167 , 448, 54 >, <0 , 90, 0 > ]) + + FastballAddBuddySpawnForLevel( "mp_glitch", TEAM_MILITIA, < -4450, -629, 320 >, < 0, 0, 0 > ) + FastballAddBuddySpawnForLevel( "mp_glitch", TEAM_IMC, < 4100, 890, 320>, < 0, 180, 0 > ) + FastballAddPanelSpawnsForLevel( "mp_glitch", [ + < 2703, 2170, 25 >, < 0, 0.00, 0 >, + < -192, 129, -55 >, < 0, 90.00, 0 >, + < -3088, -1905, 25 >, < 0, -180.00, 0 > + ]) + + FastballAddBuddySpawnForLevel( "mp_relic02", TEAM_MILITIA, < 4504, -3500, 150 >, < 0, -170, 0 > ) + FastballAddBuddySpawnForLevel( "mp_relic02", TEAM_IMC, < -4505, -3750, 367>, < 0, 10, 0 > ) + FastballAddPanelSpawnsForLevel( "mp_relic02", [ + < -2258, -5286, 356 >, < 0, 0.00, 0 >, + < -32, -2600, -75 >, < 0, 90.00, 0 >, + < 2028, -5332, 128 >, < 0, 90.00, 0 > + ]) } void function SpawnPanelsForLevel() |