DCS singleton voiceChat

From DCS World Wiki - Hoggitworld.com
Revision as of 20:41, 19 August 2020 by Grimes (talk | contribs) (Created page with "{{Template:DCSscriptingSingleton |cName= VoiceChat |vNum= 2.5.6 |desc= The voice chat singleton is a means of creating customized voice chat rooms for players to interact...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)


Singleton: VoiceChat Added with: 2.5.6
Description: The voice chat singleton is a means of creating customized voice chat rooms for players to interact with each other in multiplayer.
Functions: createRoom
Enumerators and Other Data: Side for which the voice room is available to players.
VoiceChat.Side = {
   NEUTRAL = 0
   RED = 1
   BLUE = 2
   ALL = 3
}
The type of room that is created. 
VoiceChat.RoomType= {
   PERSISTENT = 0
   MULTICREW = 1
   MANAGEABLE = 2
}
Notes: On initial release the syntax does NOT match that of the rest of the scripting engine. For example VoiceChat.createRoom is named as VoiceChat.CreateRoom. This will be changed soon and the documentation created here will use the corrected version.