diff options
Diffstat (limited to 'hercules/code/server/npcs.py')
-rw-r--r-- | hercules/code/server/npcs.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/hercules/code/server/npcs.py b/hercules/code/server/npcs.py index e86cf70..63a14d4 100644 --- a/hercules/code/server/npcs.py +++ b/hercules/code/server/npcs.py @@ -97,11 +97,14 @@ def writeScript(w, m): if m.group("gender") != None: w.write("// Gender = {0}\n".format(m.group("gender"))); - if m.group("x") == 0 and m.group("y") == 0 and m.group("class") == 0: # float npc + if m.group("x") == 0 and m.group("y") == 0: # float npc w.write("-") else: w.write("{0},{1},{2},{3}".format(m.group("map"), m.group("x"), m.group("y"), m.group("dir"))) - w.write("\t{0}\t{1}\t{2}".format(m.group("tag"), m.group("name"), m.group("class"))); + class_ = m.group("class") + if class_ == "0": # hidden npc + class_ = "32767" + w.write("\t{0}\t{1}\t{2}".format(m.group("tag"), m.group("name"), class_)); def processScript(tracker): line = tracker.line |