diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-09-10 02:32:39 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-09-10 02:32:39 +0300 |
commit | 0c4845fbb0dac4e96e85ae725b00b2aa79116e57 (patch) | |
tree | 2e7222046f363a6c710417aa30bc4d543edf7f2e /servergreps/hercules/packets.py | |
parent | 786a270a6bbf68741f21ce69139bc524137fa06f (diff) | |
download | evol-tools-0c4845fbb0dac4e96e85ae725b00b2aa79116e57.tar.gz evol-tools-0c4845fbb0dac4e96e85ae725b00b2aa79116e57.tar.bz2 evol-tools-0c4845fbb0dac4e96e85ae725b00b2aa79116e57.tar.xz evol-tools-0c4845fbb0dac4e96e85ae725b00b2aa79116e57.zip |
servergreps: add support for parsing packets from server (2013 and 2014)
Diffstat (limited to 'servergreps/hercules/packets.py')
-rwxr-xr-x | servergreps/hercules/packets.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/servergreps/hercules/packets.py b/servergreps/hercules/packets.py index 90a987d..f33b5f7 100755 --- a/servergreps/hercules/packets.py +++ b/servergreps/hercules/packets.py @@ -13,6 +13,7 @@ from src.manaplus import ManaPlus from src.ragemu import Ragemu from src.rathena import Rathena from src.reporter import Reporter +from src.server import Server from src.threeceam import Threeceam @@ -46,6 +47,8 @@ threeceam.reportName = "3ceam" idathena = Idathena() idathena.dirName = "idathena" idathena.reportName = "idathena" +server2013 = Server() +server2014 = Server() manaplus = ManaPlus() reporter = Reporter() @@ -63,6 +66,8 @@ threeceam.prepareTempFiles("3ceam", packetDir, packetVersion) threeceam.processPackets(packetDir, packetVersion) idathena.prepareTempFiles("idathena", packetDir, packetVersion) idathena.processPackets(packetDir, packetVersion) +server2013.processPackets("server2013") +server2014.processPackets("server2014") manaplus.processPackets(packetVersion); reporter.reportManaplus(hercules, manaplus) @@ -72,3 +77,5 @@ reporter.reportHerculesFork(hercules, brathena, "brAthena") reporter.reportHerculesFork(hercules, ragemu, "RagEmu") reporter.reportThreeceam(hercules, threeceam) reporter.reportIdathena(hercules, idathena) +reporter.reportServer(hercules, server2013) +reporter.reportServer(hercules, server2014) |