diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-09-05 22:08:53 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-09-05 22:10:22 +0300 |
commit | 01403803a7550baeef2ae58c2563cdada7992c37 (patch) | |
tree | d471610ccb9ce28e4ce95fd92ccf1e91534f81bf /servergreps/hercules/packets.py | |
parent | 23a81e27da1a84b9a85b0e09fd5f8421257f8d4f (diff) | |
download | evol-tools-01403803a7550baeef2ae58c2563cdada7992c37.tar.gz evol-tools-01403803a7550baeef2ae58c2563cdada7992c37.tar.bz2 evol-tools-01403803a7550baeef2ae58c2563cdada7992c37.tar.xz evol-tools-01403803a7550baeef2ae58c2563cdada7992c37.zip |
servergreps: add basic parsing for 3CeaM
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 cd6ce5f..7638957 100755 --- a/servergreps/hercules/packets.py +++ b/servergreps/hercules/packets.py @@ -12,6 +12,7 @@ from src.manaplus import ManaPlus from src.ragemu import Ragemu from src.rathena import Rathena from src.reporter import Reporter +from src.threeceam import Threeceam def showHelp(): @@ -38,6 +39,9 @@ brathena.reportName = "brathena" ragemu = Ragemu() ragemu.dirName = "ragemu" ragemu.reportName = "ragemu" +threeceam = Threeceam() +threeceam.dirName = "3ceam" +threeceam.reportName = "3ceam" manaplus = ManaPlus() reporter = Reporter() @@ -51,6 +55,8 @@ brathena.prepareTempFiles("brathena", packetDir, packetVersion) brathena.processPackets(packetDir, packetVersion) ragemu.prepareTempFiles("ragemu", packetDir, packetVersion) ragemu.processPackets(packetDir, packetVersion) +threeceam.prepareTempFiles("3ceam", packetDir, packetVersion) +threeceam.processPackets(packetDir, packetVersion) manaplus.processPackets(packetVersion); reporter.reportManaplus(hercules, manaplus) @@ -58,3 +64,4 @@ reporter.reportHercules(hercules) reporter.reportRathena(hercules, rathena) reporter.reportHerculesFork(hercules, brathena, "brAthena") reporter.reportHerculesFork(hercules, ragemu, "RagEmu") +reporter.reportThreeceam(hercules, threeceam) |