diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-10-05 01:58:52 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-10-05 01:58:52 +0300 |
commit | 328c6d6c1e37eaa6e0d675063bf4e8ffec275636 (patch) | |
tree | c92d4a10761c701aa2d3731c0dba9a47b0f3c232 /servergreps/hercules/packets.py | |
parent | 36058d397b95da6730dd081c79aa1811afcbea30 (diff) | |
download | tools-328c6d6c1e37eaa6e0d675063bf4e8ffec275636.tar.gz tools-328c6d6c1e37eaa6e0d675063bf4e8ffec275636.tar.bz2 tools-328c6d6c1e37eaa6e0d675063bf4e8ffec275636.tar.xz tools-328c6d6c1e37eaa6e0d675063bf4e8ffec275636.zip |
servergreps: add parsing recv packet tables.
Diffstat (limited to 'servergreps/hercules/packets.py')
-rwxr-xr-x | servergreps/hercules/packets.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/servergreps/hercules/packets.py b/servergreps/hercules/packets.py index 67f6f75..9290160 100755 --- a/servergreps/hercules/packets.py +++ b/servergreps/hercules/packets.py @@ -14,6 +14,7 @@ from src.ragemu import Ragemu from src.rathena import Rathena from src.reporter import Reporter from src.server import Server +from src.tables import Tables from src.threeceam import Threeceam @@ -49,6 +50,9 @@ idathena.dirName = "idathena" idathena.reportName = "idathena" server2013 = Server() server2014 = Server() +tables = Tables() +tables.dirName = "tables" +tables.reportName = "tables" manaplus = ManaPlus() reporter = Reporter() @@ -68,6 +72,7 @@ idathena.prepareTempFiles("idathena", packetDir, packetVersion) idathena.processPackets("idathena", packetDir, packetVersion) server2013.processPackets("server2013") server2014.processPackets("server2014") +tables.processPackets("tables", packetDir, packetVersion) manaplus.processPackets(packetVersion); reporter.reportManaplus(hercules, manaplus) @@ -79,3 +84,4 @@ reporter.reportHerculesFork(hercules, threeceam, "3CeaM") reporter.reportHerculesFork(hercules, idathena, "idAthena") reporter.reportServer(hercules, server2013) reporter.reportServer(hercules, server2014) +reporter.reportTables(hercules, tables) |