This is a packet family that is used to send/receive packets about handling your bank account.
== Server-to-Client
=== PACKET_OPEN (13) ===
Description: Shows the bank menu to the player
<pre>
Gold in Bank: 4
Session Token: 3
Locker Space: 1
</pre>
=== PACKET_REPLY (3) ===
Description: Shows the player gold in bank and gold in inventory
<pre>
Gold in Inventory: 4
Gold in Bank: 4
</pre>
== Client-to-Server
=== PACKET_OPEN (13) ===
Description: Player opening their bank
<pre>
NPC ID: 2
</pre>
=== PACKET_ADD (7) ===
Description: Player depositing gold in their bank
<pre>
Gold Amount: 4
</pre>
=== PACKET_TAKE (9) ===
Description: Player withdrawing gold from their bank
<pre>
Gold Amount: 4
</pre> |