Server.Network.DisplayPaperdoll.DisplayPaperdoll C# (CSharp) Méthode

DisplayPaperdoll() public méthode

public DisplayPaperdoll ( Mobile m, string text, bool canLift ) : System
m Mobile
text string
canLift bool
Résultat System
        public DisplayPaperdoll( Mobile m, string text, bool canLift )
            : base(0x88, 66)
        {
            byte flags = 0x00;

            if ( m.Warmode )
                flags |= 0x01;

            if ( canLift )
                flags |= 0x02;

            m_Stream.Write( (int) m.Serial );
            m_Stream.WriteAsciiFixed( text, 60 );
            m_Stream.Write( (byte) flags );
        }
DisplayPaperdoll