This is a packet family that is used to send/receive packets about sitting.
== Server-to-Client ==
== Client-to-Server ==
=== PACKET_REQUEST (1) ===
Description: Player trying to sit or stand
<pre>
SitAction: 1
</pre>
Sit Action options:
* 0 = Standing
* 1 = Sitting in Chair
* 2 = Sitting on Floor
=== PACKET_PLAYER (8) ===
Description: Shows a player sitting down on the floor
<pre>
Player ID: 2
Player X: 1
Player Y: 1
Player Direction: 1
Unknown: 1
</pre>
=== PACKET_CLOSE (14) ===
Description: Shows a player standing up(yourself)
<pre>
Player ID: 2
Player X: 1
Player Y: 1
</pre>
=== PACKET_CLOSE (14) ===
Description: Shows a player standing up(someone else)
<pre>
Player Sitting ID: 2
Player Sitting X: 1
Player Sitting Y: 1
</pre> |