aboutsummaryrefslogtreecommitdiff
path: root/Northstar.CustomServers/scripts/vscripts/gamemodes/_hardpoints.gnut
diff options
context:
space:
mode:
authorBobTheBob <32057864+BobTheBob9@users.noreply.github.com>2021-07-12 14:51:43 +0100
committerBobTheBob <32057864+BobTheBob9@users.noreply.github.com>2021-07-12 14:51:43 +0100
commitba41749cc6a6693f11a7f1c7535ff758a461a424 (patch)
tree945786de1feff62180ea7c451c09482a3af823ac /Northstar.CustomServers/scripts/vscripts/gamemodes/_hardpoints.gnut
parent07b7eafd5c1845c70510b695446c23973fed1d4d (diff)
downloadNorthstarMods-ba41749cc6a6693f11a7f1c7535ff758a461a424.tar.gz
NorthstarMods-ba41749cc6a6693f11a7f1c7535ff758a461a424.zip
add hardpoint, infection changes, fra changes
Diffstat (limited to 'Northstar.CustomServers/scripts/vscripts/gamemodes/_hardpoints.gnut')
-rw-r--r--Northstar.CustomServers/scripts/vscripts/gamemodes/_hardpoints.gnut16
1 files changed, 9 insertions, 7 deletions
diff --git a/Northstar.CustomServers/scripts/vscripts/gamemodes/_hardpoints.gnut b/Northstar.CustomServers/scripts/vscripts/gamemodes/_hardpoints.gnut
index dab433f1e..0a32f133c 100644
--- a/Northstar.CustomServers/scripts/vscripts/gamemodes/_hardpoints.gnut
+++ b/Northstar.CustomServers/scripts/vscripts/gamemodes/_hardpoints.gnut
@@ -1,33 +1,35 @@
+// atm this is just a stub script since hardpoints are only really used in hardpoint
+// respawn probably tried to share this code across multiple modes but atm we just dont need to do that
+
global function Hardpoints_Init
+
global function CapturePoint_GetStartProgress
global function CapturePoint_GetCappingTeam
global function CapturePoint_GetOwningTeam
global function CapturePoint_GetGoalProgress
-global array<entity> HARDPOINTS
void function Hardpoints_Init()
{
-
-
+
}
float function CapturePoint_GetStartProgress( entity hardpoint )
{
- return 0.5
+ return GetGlobalNetFloat( "objective" + hardpoint.kv.hardpointGroup + "Progress" )
}
int function CapturePoint_GetCappingTeam( entity hardpoint )
{
- return 0
+ return GetGlobalNetInt( "objective" + hardpoint.kv.hardpointGroup + "CappingTeam" )
}
int function CapturePoint_GetOwningTeam( entity hardpoint )
{
- return 0
+ return hardpoint.GetTeam()
}
float function CapturePoint_GetGoalProgress( entity hardpoint )
{
- return 1.0
+ return GetGlobalNetFloat( "objective" + hardpoint.kv.hardpointGroup + "Progress" )
} \ No newline at end of file