SharpMod.Messages.MessageFunctions.SendBotVoiceMessage C# (CSharp) Method

SendBotVoiceMessage() public static method

public static SendBotVoiceMessage ( MessageDestination destination, BotVoiceMessage val ) : void
destination MessageDestination
val BotVoiceMessage
return void
        public static void SendBotVoiceMessage(MessageDestination destination, BotVoiceMessage val)
        {
            SendBotVoiceMessage(destination, IntPtr.Zero, IntPtr.Zero , val.Status, val.PlayerIndex);
        }

Same methods

MessageFunctions::SendBotVoiceMessage ( MessageDestination destination, IntPtr playerEntity, BotVoiceMessage val ) : void
MessageFunctions::SendBotVoiceMessage ( MessageDestination destination, IntPtr floatValue, IntPtr playerEntity, BotVoiceMessage val ) : void
MessageFunctions::SendBotVoiceMessage ( MessageDestination destination, IntPtr floatValue, IntPtr playerEntity, byte Status, byte PlayerIndex ) : void
MessageFunctions::SendBotVoiceMessage ( this player, BotVoiceMessage val ) : void
MessageFunctions::SendBotVoiceMessage ( this player, IntPtr floatValue, BotVoiceMessage val ) : void
MessageFunctions::SendBotVoiceMessage ( this player, byte Status, byte PlayerIndex ) : void
MessageFunctions