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

SendScoreAttribMessage() public static method

public static SendScoreAttribMessage ( MessageDestination destination, IntPtr floatValue, IntPtr playerEntity, ScoreAttribMessage val ) : void
destination MessageDestination
floatValue IntPtr
playerEntity IntPtr
val ScoreAttribMessage
return void
        public static void SendScoreAttribMessage(MessageDestination destination, IntPtr floatValue, IntPtr playerEntity, ScoreAttribMessage val)
        {
            SendScoreAttribMessage(destination, floatValue,playerEntity , val.PlayerID, val.Flags);
        }

Same methods

MessageFunctions::SendScoreAttribMessage ( MessageDestination destination, IntPtr floatValue, IntPtr playerEntity, byte PlayerID, byte Flags ) : void
MessageFunctions::SendScoreAttribMessage ( MessageDestination destination, IntPtr playerEntity, ScoreAttribMessage val ) : void
MessageFunctions::SendScoreAttribMessage ( MessageDestination destination, ScoreAttribMessage val ) : void
MessageFunctions::SendScoreAttribMessage ( this player, IntPtr floatValue, ScoreAttribMessage val ) : void
MessageFunctions::SendScoreAttribMessage ( this player, ScoreAttribMessage val ) : void
MessageFunctions::SendScoreAttribMessage ( this player, ScoreAttribute attrib ) : void
MessageFunctions::SendScoreAttribMessage ( this player, byte PlayerID, byte Flags ) : void
MessageFunctions