/ragnarok-online-packet-dissector

A Wireshark LUA plugin for dissecting RO packets

Primary LanguageLuaGNU General Public License v3.0GPL-3.0

Ragnarok Online Packet Dissector

LUA plugin for Wireshark

How to install the plugin

Updating Packet Table

lua update_packet.lua <in file>
  • The in file structure should follow:
// packet <HEX header 0x%04x>
struct PACKET_<packet name with no spaces> {
  /* this+0x0 */ short PacketType
  /* this+0x2 */ short PacketLength
  ...
  /* this+<0x%04 pos> */ <C type> <variable name>
}