aboutsummaryrefslogtreecommitdiff
path: root/Northstar.CustomServers
diff options
context:
space:
mode:
Diffstat (limited to 'Northstar.CustomServers')
-rw-r--r--Northstar.CustomServers/mod/scripts/vscripts/gamemodes/_gamemode_cp.nut16
1 files changed, 16 insertions, 0 deletions
diff --git a/Northstar.CustomServers/mod/scripts/vscripts/gamemodes/_gamemode_cp.nut b/Northstar.CustomServers/mod/scripts/vscripts/gamemodes/_gamemode_cp.nut
index fb2962478..db1b7edd5 100644
--- a/Northstar.CustomServers/mod/scripts/vscripts/gamemodes/_gamemode_cp.nut
+++ b/Northstar.CustomServers/mod/scripts/vscripts/gamemodes/_gamemode_cp.nut
@@ -16,6 +16,7 @@ struct HardpointStruct
array<entity> imcCappers
array<entity> militiaCappers
}
+
struct CP_PlayerStruct
{
entity player
@@ -187,6 +188,7 @@ void function SpawnHardpoints()
hardpointID = 2
spawnpoint.SetHardpointID( hardpointID )
+ SpawnHardpointMinimapIcon( spawnpoint )
HardpointStruct hardpointStruct
hardpointStruct.hardpoint = spawnpoint
@@ -207,6 +209,19 @@ void function SpawnHardpoints()
}
}
+void function SpawnHardpointMinimapIcon( entity spawnpoint )
+{
+ // map hardpoint id to eMinimapObject_info_hardpoint enum id
+ int miniMapObjectHardpoint = spawnpoint.GetHardpointID() + 1
+
+ spawnpoint.Minimap_SetCustomState( miniMapObjectHardpoint )
+ spawnpoint.Minimap_AlwaysShow( TEAM_MILITIA, null )
+ spawnpoint.Minimap_AlwaysShow( TEAM_IMC, null )
+ spawnpoint.Minimap_SetAlignUpright( true )
+
+ SetTeam( spawnpoint, TEAM_UNASSIGNED )
+}
+
// functions for handling hardpoint netvars
void function SetHardpointState( HardpointStruct hardpoint, int state )
{
@@ -282,6 +297,7 @@ void function GamemodeCP_InitPlayer(entity player)
file.players.append(playerStruct)
thread PlayerThink(playerStruct)
}
+
void function GamemodeCP_RemovePlayer(entity player)
{