EOSERV Wiki > Page: PACKET BOARD > History > Revision Diff

Revision Diff: PACKET BOARD

Revision by at 11th Feb 2011 05:21 pm
DeletionsAdditions
This is a packet family that is sent server-side and client-side.
''' Note: If there is a 254 in the length parameter then it indicates it is a string that doesn't stop until it reaches a 254 byte(A.K.A. Break String). '''<br /><br />
''' Note: If there is a n in the length parameter then it indicates it is a string. '''
== Server-Side ==
=== PACKET_OPEN - Opens up the board menu for a player ===
<pre>
Board ID: 1
Number of Posts: 1
FOREACH BOARD_POST
{
Post ID: 1
Byte(255): 1
Author Name: 254
Subject Name: 254
}
</pre>
=== PACKET_PLAYER - Shows a post to a player ===
<pre>
Post ID: 2
Post Message: n
</pre>
== Client-Side ==
=== PACKET_REMOVE - Player removing a post from the town board ===
<pre>
Board ID: 2
Post ID: 2
</pre>
=== PACKET_CREATE - Player posts on a town board ===
<pre>
Board ID: 2
Unknown Byte: 1
Subject: 254
Body: 254
</pre>
=== PACKET_TAKE - Player reading a post in a board ===
<pre>
Board ID: 2
Post ID: 2
</pre>
=== PACKET_OPEN - Player opening a town board ===
<pre>
Board ID: 2
</pre>
EOSERV Wiki > Page: PACKET BOARD > History > Revision Diff