summaryrefslogtreecommitdiff
path: root/servergreps/hercules/packets.py
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2016-09-05 20:59:50 +0300
committerAndrei Karas <akaras@inbox.ru>2016-09-05 20:59:50 +0300
commita1b436fefecd35dfd26244b01d50f6cb6d89e4be (patch)
tree55ef6fd0b8307a9a069a9da90833871670d31a21 /servergreps/hercules/packets.py
parent88dd7266cc3bae657afe00b1126704f9f9ce2484 (diff)
downloadtools-a1b436fefecd35dfd26244b01d50f6cb6d89e4be.tar.gz
tools-a1b436fefecd35dfd26244b01d50f6cb6d89e4be.tar.bz2
tools-a1b436fefecd35dfd26244b01d50f6cb6d89e4be.tar.xz
tools-a1b436fefecd35dfd26244b01d50f6cb6d89e4be.zip
servergreps: add parsing RagEmu.
Diffstat (limited to 'servergreps/hercules/packets.py')
-rwxr-xr-xservergreps/hercules/packets.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/servergreps/hercules/packets.py b/servergreps/hercules/packets.py
index 40d67a6..cd6ce5f 100755
--- a/servergreps/hercules/packets.py
+++ b/servergreps/hercules/packets.py
@@ -9,6 +9,7 @@ import sys
from src.brathena import Brathena
from src.hercules import Hercules
from src.manaplus import ManaPlus
+from src.ragemu import Ragemu
from src.rathena import Rathena
from src.reporter import Reporter
@@ -34,6 +35,9 @@ rathena.reportName = "rathena"
brathena = Brathena()
brathena.dirName = "brathena"
brathena.reportName = "brathena"
+ragemu = Ragemu()
+ragemu.dirName = "ragemu"
+ragemu.reportName = "ragemu"
manaplus = ManaPlus()
reporter = Reporter()
@@ -45,9 +49,12 @@ rathena.prepareTempFiles("rathena", packetDir, packetVersion)
rathena.processPackets(packetDir, packetVersion)
brathena.prepareTempFiles("brathena", packetDir, packetVersion)
brathena.processPackets(packetDir, packetVersion)
+ragemu.prepareTempFiles("ragemu", packetDir, packetVersion)
+ragemu.processPackets(packetDir, packetVersion)
manaplus.processPackets(packetVersion);
reporter.reportManaplus(hercules, manaplus)
reporter.reportHercules(hercules)
reporter.reportRathena(hercules, rathena)
reporter.reportHerculesFork(hercules, brathena, "brAthena")
+reporter.reportHerculesFork(hercules, ragemu, "RagEmu")