aboutsummaryrefslogtreecommitdiff
path: root/Northstar.CustomServers/scripts/vscripts/conversation/_spectre_chatter_mp.gnut
diff options
context:
space:
mode:
Diffstat (limited to 'Northstar.CustomServers/scripts/vscripts/conversation/_spectre_chatter_mp.gnut')
-rw-r--r--Northstar.CustomServers/scripts/vscripts/conversation/_spectre_chatter_mp.gnut18
1 files changed, 18 insertions, 0 deletions
diff --git a/Northstar.CustomServers/scripts/vscripts/conversation/_spectre_chatter_mp.gnut b/Northstar.CustomServers/scripts/vscripts/conversation/_spectre_chatter_mp.gnut
new file mode 100644
index 000000000..2f9e0f844
--- /dev/null
+++ b/Northstar.CustomServers/scripts/vscripts/conversation/_spectre_chatter_mp.gnut
@@ -0,0 +1,18 @@
+global function SpectreChatter_MP_Init
+global function PlaySpectreChatterMPLine
+
+void function SpectreChatter_MP_Init()
+{
+ //ShSpectreChatter_MP_Init()
+}
+
+void function PlaySpectreChatterMPLine( entity spectre, string conversationType )
+{
+ #if !SPECTRE_CHATTER_MP_ENABLED
+ return
+ #endif
+
+ foreach ( entity player in GetPlayerArray() )
+ if ( ShouldPlaySpectreChatterMPLine( conversationType, player, spectre ) )
+ Remote_CallFunction_NonReplay( player, "ServerCallback_PlaySpectreChatterMP", GetConversationIndex( conversationType ), spectre.GetEncodedEHandle() )
+} \ No newline at end of file