aboutsummaryrefslogtreecommitdiff
path: root/Northstar.Custom
diff options
context:
space:
mode:
authorBobTheBob <32057864+BobTheBob9@users.noreply.github.com>2022-01-08 01:27:49 +0000
committerGitHub <noreply@github.com>2022-01-08 01:27:49 +0000
commitac1179b9b9ae6765fcfe7949086bd739a3bca82e (patch)
tree3fd27e42e74fefc6c10bc295053e162432119a1a /Northstar.Custom
parent5e256f1146ff049f391e46cfba89fe138fbdfd08 (diff)
parent0cdf3d9ee85523cc687acd6835e4429e855350d6 (diff)
downloadNorthstarMods-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')
-rw-r--r--Northstar.Custom/mod/scripts/vscripts/gamemodes/_gamemode_fastball.gnut18
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 98878c3a4..405ef16ea 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
+}