aboutsummaryrefslogtreecommitdiff
path: root/Northstar.CustomServers/mod/scripts/vscripts/_misc.gnut
diff options
context:
space:
mode:
authorBobTheBob <32057864+BobTheBob9@users.noreply.github.com>2021-12-05 16:03:50 +0000
committerBobTheBob <32057864+BobTheBob9@users.noreply.github.com>2021-12-05 16:03:50 +0000
commit51e16034230f4dd759900c7922b8db43941e0a70 (patch)
tree6492337f6855e2403db0376b8d1021196df80879 /Northstar.CustomServers/mod/scripts/vscripts/_misc.gnut
parentb48fd143624f2b887699acd98d9a4c55b792ab0e (diff)
downloadNorthstarMods-51e16034230f4dd759900c7922b8db43941e0a70.tar.gz
NorthstarMods-51e16034230f4dd759900c7922b8db43941e0a70.zip
big commit for playtesting
Diffstat (limited to 'Northstar.CustomServers/mod/scripts/vscripts/_misc.gnut')
-rw-r--r--Northstar.CustomServers/mod/scripts/vscripts/_misc.gnut40
1 files changed, 0 insertions, 40 deletions
diff --git a/Northstar.CustomServers/mod/scripts/vscripts/_misc.gnut b/Northstar.CustomServers/mod/scripts/vscripts/_misc.gnut
deleted file mode 100644
index 20b53c502..000000000
--- a/Northstar.CustomServers/mod/scripts/vscripts/_misc.gnut
+++ /dev/null
@@ -1,40 +0,0 @@
-//todo figure out where these stub functions should be and move them to those places
-global function Spotting_Init
-global function FW_Border_GlobalInit
-global function IsVDUTitan
-global function PIN_PlayerRodeoedEnemyTitanToCompletion
-global function PlayerProgressionAllowed
-
-void function Spotting_Init()
-{
-
-}
-
-void function FW_Border_GlobalInit()
-{
- AddSpawnCallbackEditorClass( "func_brush", "func_brush_fw_territory_border", RemoveFWBorder )
-}
-
-void function RemoveFWBorder( entity border )
-{
- if ( GameModeRemove( border ) )
- return
-
- if ( !border.HasKey( "gamemode_" + GAMETYPE ) )
- border.Destroy()
-}
-
-bool function IsVDUTitan(entity titan)
-{
- return false
-}
-
-void function PIN_PlayerRodeoedEnemyTitanToCompletion( entity player, entity titan, bool playerHadBattery )
-{
-
-}
-
-bool function PlayerProgressionAllowed( entity player )
-{
- return true
-} \ No newline at end of file