summaryrefslogtreecommitdiff
path: root/servergreps/hercules/packets.py
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2016-09-05 22:23:19 +0300
committerAndrei Karas <akaras@inbox.ru>2016-09-05 22:23:19 +0300
commit12126528a6acd121bb2d2d6831a4ec8ceabf7c62 (patch)
tree308c47df9a8ff4b50420603525d047801663fae8 /servergreps/hercules/packets.py
parentb4e13632aaf59425022797fb6c0c7eff2957cd7d (diff)
downloadtools-12126528a6acd121bb2d2d6831a4ec8ceabf7c62.tar.gz
tools-12126528a6acd121bb2d2d6831a4ec8ceabf7c62.tar.bz2
tools-12126528a6acd121bb2d2d6831a4ec8ceabf7c62.tar.xz
tools-12126528a6acd121bb2d2d6831a4ec8ceabf7c62.zip
servergreps: add basic parsing for idathena.
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 7638957..90a987d 100755
--- a/servergreps/hercules/packets.py
+++ b/servergreps/hercules/packets.py
@@ -8,6 +8,7 @@ import sys
from src.brathena import Brathena
from src.hercules import Hercules
+from src.idathena import Idathena
from src.manaplus import ManaPlus
from src.ragemu import Ragemu
from src.rathena import Rathena
@@ -42,6 +43,9 @@ ragemu.reportName = "ragemu"
threeceam = Threeceam()
threeceam.dirName = "3ceam"
threeceam.reportName = "3ceam"
+idathena = Idathena()
+idathena.dirName = "idathena"
+idathena.reportName = "idathena"
manaplus = ManaPlus()
reporter = Reporter()
@@ -57,6 +61,8 @@ ragemu.prepareTempFiles("ragemu", packetDir, packetVersion)
ragemu.processPackets(packetDir, packetVersion)
threeceam.prepareTempFiles("3ceam", packetDir, packetVersion)
threeceam.processPackets(packetDir, packetVersion)
+idathena.prepareTempFiles("idathena", packetDir, packetVersion)
+idathena.processPackets(packetDir, packetVersion)
manaplus.processPackets(packetVersion);
reporter.reportManaplus(hercules, manaplus)
@@ -65,3 +71,4 @@ reporter.reportRathena(hercules, rathena)
reporter.reportHerculesFork(hercules, brathena, "brAthena")
reporter.reportHerculesFork(hercules, ragemu, "RagEmu")
reporter.reportThreeceam(hercules, threeceam)
+reporter.reportIdathena(hercules, idathena)