Difference between revisions of "VN fnc remoteSay3D"

From Savage Game Design Wiki
Jump to navigation Jump to search
m (Text replacement - "]]; |p1n=" to "]] |p1n=")
(Page filling)
Line 1: Line 1:
[[Category:TODO]]
 
 
{{Function
 
{{Function
  
 
|v= 1.00
 
|v= 1.00
  
|author=  
+
|author= TeTeT
  
|a=
+
|a= global
  
|e=
+
|e= global
  
 
|g1= vn_functions
 
|g1= vn_functions
  
|d= <pre>// Execute say3D on all systems, written by TeTeT
+
|d= Executes {{Biki|say3D}} on all systems.
</pre><small>''(Placeholder description extracted from the function header by '''LM_exportFunctionsToWiki.sqf''')''</small>
 
  
|s= [] call [[VN_fnc_remoteSay3D]]
+
|s= [object, sound] call [[VN_fnc_remoteSay3D]]
  
|p1n=
+
|p1n= object
|p1t=
+
|p1t= object
|p1d=
+
|p1d= sound source
 
|p1v=
 
|p1v=
  
|p2n=
+
|p2n= sound
|p2t=
+
|p2t= string
 
|p2d=
 
|p2d=
 
|p2v=
 
|p2v=
  
|r1t=
+
|r1t= string
|r1d=
+
|r1d= always <code>""</code> from {{Biki|remoteExec}} usage
  
|x1= <code>-</code>
+
|x1= <code>[player, "holdFire"] call VN_fnc_remoteSay3D; {{cc|identical to syntax <code>player say3D "holdFire"</code>}}</code>
 
}}
 
}}

Revision as of 22:32, 20 January 2021

← back to Functions Introduced in S.O.G. Prairie Fire v1.00
by TeTeT
Argument(s): global
Effect(s): global

Description

Executes say3D on all systems.

Syntax

Syntax
[object, sound] call VN_fnc_remoteSay3D
Parameters
object: Object - sound source
sound: String
Return value
String - always "" from remoteExec usage

Examples

Example 1
[player, "holdFire"] call VN_fnc_remoteSay3D; // identical to syntax player say3D "holdFire"