Write in Message Board?

09/12/2010 18:31 .Kob#1
Hello,

anyone know how i can write something in the message board?
String packet? Just chat type?
I don't want implement the system, i just want that table for my updates, news, etc,etc.

This is the message board if you don't know what i'm talking about:

[Only registered and activated users can see links. Click Here To Register...]
09/12/2010 19:31 CptSky#2
You need to implement the board request. After you answer with a MsgTalk packet.
09/12/2010 19:38 .Kob#3
Quote:
Originally Posted by CptSky View Post
You need to implement the board request. After you answer with a MsgTalk packet.
The request it's the packet 1111. So just when i recive this, i need to send the MsgTalk packet. What number of msg type?
09/12/2010 19:43 Arcо#4
1004 I believe.
Not too sure though.
09/12/2010 19:52 CptSky#5
Quote:
Originally Posted by .Kob View Post
The request it's the packet 1111. So just when i recive this, i need to send the MsgTalk packet. What number of msg type?
It's more than that. First the client request the list. You need to answer with the MsgMessageBoard packet. The list has a special structure. After, if someone want to see the words of a post, the client request the words. You need to answer with the MsgTalk packet.

Code:
Delete = 1,
GetList = 2,
List = 3,
GetWords = 4,
@Arco, yes, it's the good one.
09/12/2010 19:58 .Kob#6
Quote:
Originally Posted by CptSky View Post
It's more than that. First the client request the list. You need to answer with the MsgMessageBoard packet. The list has a special structure. After, if someone want to see the words of a post, the client request the words. You need to answer with the MsgTalk packet.

Code:
Delete = 1,
GetList = 2,
List = 3,
GetWords = 4,
@Arco, yes, it's the good one.
I'm working on it.
But anyways, i can't write that just with a command?

Oh and looking at Korvak's wiki:
Quote:
TradeBoard = 0x899,
FriendBoard = 0x89a,
TeamBoard = 0x89b,
GuildBoard = 0x89c,
OthersBoard = 0x89d

Converted:

TradeBoard = 2201,
FriendBoard = 2202,
TeamBoard = 2203,
GuildBoard = 2204,
OthersBoard = 2205

Edit: How work the packet? What offset and type?
So, how i get the data:
Code:
Delete = 1,
GetList = 2,
List = 3,
GetWords = 4,
?
09/12/2010 23:11 µ~Xero~µ#7
TradeBoard = 2201,
FriendBoard = 2202,
TeamBoard = 2203,
GuildBoard = 2204,
OthersBoard = 2205

Chat ID aka ChatType Sent within the MsgPacket 1004.

the

Delete = 1,
GetList = 2,
List = 3,
GetWords = 4,

Are subtypes for the message board.

Basicly its just another chattype. I got it done on my source pm me if you need help.