diff options
author | BobTheBob <32057864+BobTheBob9@users.noreply.github.com> | 2022-01-08 01:27:49 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-08 01:27:49 +0000 |
commit | ac1179b9b9ae6765fcfe7949086bd739a3bca82e (patch) | |
tree | 3fd27e42e74fefc6c10bc295053e162432119a1a /Northstar.Custom/mod/scripts/vscripts | |
parent | 5e256f1146ff049f391e46cfba89fe138fbdfd08 (diff) | |
parent | 0cdf3d9ee85523cc687acd6835e4429e855350d6 (diff) | |
download | NorthstarMods-ac1179b9b9ae6765fcfe7949086bd739a3bca82e.tar.gz NorthstarMods-ac1179b9b9ae6765fcfe7949086bd739a3bca82e.zip |
Merge pull request #76 from theroylee/main
Add Fastball spawns for Crash Site and Rise
Diffstat (limited to 'Northstar.Custom/mod/scripts/vscripts')
-rw-r--r-- | Northstar.Custom/mod/scripts/vscripts/gamemodes/_gamemode_fastball.gnut | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/Northstar.Custom/mod/scripts/vscripts/gamemodes/_gamemode_fastball.gnut b/Northstar.Custom/mod/scripts/vscripts/gamemodes/_gamemode_fastball.gnut index 98878c3a..405ef16e 100644 --- a/Northstar.Custom/mod/scripts/vscripts/gamemodes/_gamemode_fastball.gnut +++ b/Northstar.Custom/mod/scripts/vscripts/gamemodes/_gamemode_fastball.gnut @@ -97,6 +97,22 @@ void function GamemodeFastball_Init() < 8, 825, 1096 >, < 0, -90.00, 0 > , < 740 , -600, 960 >, < 0, 0, 0 > ]) + + FastballAddBuddySpawnForLevel( "mp_crashsite3", TEAM_MILITIA, < -6364.65, -1291.28, 822.02>, <0, -19.17, 0> ) + FastballAddBuddySpawnForLevel( "mp_crashsite3", TEAM_IMC, < -2455.29, 821.52, 539.21>, <0, -179.21, 0> ) + FastballAddPanelSpawnsForLevel( "mp_crashsite3", [ + < -672.27, -2786, 931.17 >, < 0, -45, 0 >, + < -3770, -990, 985 >, < 10, 80.00, 20 >, + < -6190.25, 1658.51, 1400.03 >, < 0, 144, 0 > + ]) + + FastballAddBuddySpawnForLevel( "mp_rise", TEAM_MILITIA, < -3885.97, 35.11, 704.03>, <0, 11.86, 0> ) + FastballAddBuddySpawnForLevel( "mp_rise", TEAM_IMC, < 2206.76, 1869.08, 453.9>, <0, -165.77, 0> ) + FastballAddPanelSpawnsForLevel( "mp_rise", [ + < 141, 2484.71, 296.03 >, < 0, 0, 0 >, + < -448.54, 1091.42, 545.03 >, < 0, 0, 0 >, + < -2097, 1050, 320.03 >, < 0, 180, 0 > + ]) //Current BT fast ball points are good FastballAddPanelSpawnsForLevel( "mp_colony02", [ @@ -208,4 +224,4 @@ int function FastballDecideWinner() return TEAM_IMC return TEAM_UNASSIGNED -}
\ No newline at end of file +} |