MessageBoard PacketID?

07/26/2009 15:56 _Emme_#1
Heya.

Was just wondering if anyone has the messageboard packetid to make a text be written in the messageboard. I got so far that I can get what message the user inputs in the [Write] window, but not sure how to get it to write a text in the board.

Thanks.
07/26/2009 16:07 f0am#2
umm on CoEmu source there is chattypes and there isl ike guildchat board message chat type and other chat board message chat type, the chat tpyes are there you know , ****
07/26/2009 17:08 _tao4229_#3
You're using a server on the latest patch, yet you can't go log packets off the retail servers?

Pathetic.
07/26/2009 17:31 _Emme_#4
Quote:
Originally Posted by _tao4229_ View Post
You're using a server on the latest patch, yet you can't go log packets off the retail servers?

Pathetic.
Can't be assed to download TQ's conquerfolder, mine is completely editted.

Quote:
Originally Posted by _tao4229_ View Post
You're using a server on the latest patch, yet you can't go log packets off the retail servers?

Pathetic.

@f0am
I have those already, needs the one to write=P
07/26/2009 22:01 CptSky#5
In your source, when you receive the packet, add an 'else' at the check of the Id and Dump the packet in a console or a file... After, click on the board, you will get the Board Request.

In the old client: 0A 00 57 04 00 00 99 08 02 00 ..W.......

Length -> UInt16
Type -> UInt16
ZeroFill -> UInt16
BoardId -> UInt16
SubType -> UInt16

For the request, I think it's the structure.

Code:
    public enum BoardType : int
    {
        Delete = 1,
        GetList = 2,
        List = 3,
        GetWords = 4
    }
07/26/2009 22:12 L1nk1n*P4rK#6
Thanks xD