aboutsummaryrefslogtreecommitdiff
path: root/Northstar.CustomServers/mod/scripts/vscripts/mp/levels
diff options
context:
space:
mode:
authorBobTheBob <32057864+BobTheBob9@users.noreply.github.com>2021-11-23 00:11:29 +0000
committerBobTheBob <32057864+BobTheBob9@users.noreply.github.com>2021-11-23 00:11:29 +0000
commitb48fd143624f2b887699acd98d9a4c55b792ab0e (patch)
tree1e280c016b0e8a0c7ac46e1c28804d4f42e6f9e8 /Northstar.CustomServers/mod/scripts/vscripts/mp/levels
parent35dfd937798d105238db23ea86f90f21be46694b (diff)
downloadNorthstarMods-b48fd143624f2b887699acd98d9a4c55b792ab0e.tar.gz
NorthstarMods-b48fd143624f2b887699acd98d9a4c55b792ab0e.zip
spawn changes and complex rings
Diffstat (limited to 'Northstar.CustomServers/mod/scripts/vscripts/mp/levels')
-rw-r--r--Northstar.CustomServers/mod/scripts/vscripts/mp/levels/mp_complex3.nut13
1 files changed, 12 insertions, 1 deletions
diff --git a/Northstar.CustomServers/mod/scripts/vscripts/mp/levels/mp_complex3.nut b/Northstar.CustomServers/mod/scripts/vscripts/mp/levels/mp_complex3.nut
index 37b891699..2568b6231 100644
--- a/Northstar.CustomServers/mod/scripts/vscripts/mp/levels/mp_complex3.nut
+++ b/Northstar.CustomServers/mod/scripts/vscripts/mp/levels/mp_complex3.nut
@@ -1 +1,12 @@
-//fuck \ No newline at end of file
+global function CodeCallback_MapInit
+
+void function CodeCallback_MapInit()
+{
+ AddCallback_EntitiesDidLoad( InitComplexRings )
+}
+
+void function InitComplexRings()
+{
+ entity rings = GetEntByScriptName( "rings_pristine" )
+ thread PlayAnim( rings, "animated_slow" )
+} \ No newline at end of file