LoginServer.Systems.WrongInformation C# (CSharp) Method

WrongInformation() public method

public WrongInformation ( ) : byte[]
return byte[]
        public byte[] WrongInformation()
        {
            PacketWriter Writer = new PacketWriter();
            Writer.Create(SERVER.SERVER_AUTH);
            Writer.Byte(3);
            Writer.Byte(0x0F);
            Writer.Byte(2);
            Writer.Text(string.Format("[DARKEMU]: Incorrect password: {0}/3 times.", WrongPassword));
            Writer.Word(0);
            return Writer.GetBytes();
        }