This is a packet family that is used to send/receive packets about walking.
== Server-to-Client ==
=== PACKET_PLAYER (8) ===
Description: Shows another player walking(not yourself)
<pre>
Player Walking's ID: 2
Player Walking's Direction: 1
Player Walking's X: 1
Player Walking's Y: 1
</pre>
=== PACKET_REPLY (3) ===
Description: Shows newly appearing items on the map
<pre>
255: 1
255: 1
FOREACH NEW ITEM
{
Item UID: 2
Item ID: 2
Item X: 1
Item Y: 1
Amount of Item: 3
}
</pre>
== Client-to-Server ==
=== PACKET_ADMIN (17) ===
Description: Admin walking with no wall restrictions
<pre>
Player Direction: 1
Timestamp: 3
Player X: 1
Player Y: 1
</pre>
=== PACKET_PLAYER (8) ===
Description: Player walking normally
<pre>
Player Direction: 1
Timestamp: 3
Player X: 1
Player Y: 1
</pre>
=== PACKET_SPEC (16) ===
Description: Player walking using ghost
<pre>
Player Direction: 1
Timestamp: 3
Player X: 1
Player Y: 1
</pre> |