diff options
Diffstat (limited to 'npc/003-1/well.txt')
-rw-r--r-- | npc/003-1/well.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/npc/003-1/well.txt b/npc/003-1/well.txt index 815e6498c..64a0def0c 100644 --- a/npc/003-1/well.txt +++ b/npc/003-1/well.txt @@ -36,23 +36,23 @@ mes col("Hey wait... You're enveloped by a bright light and gain experience!", 9); } else if (.@n > 9900) { mes col("Hey wait... A monster!! Run for your life!!", 9); - getmapxy(.@m$, .@x, .@y); + getmapxy(.@m$, .@x, .@y, 0); .@mobGID = monster(.@m$, .@x, .@y, "Croc", Croc, 1); unitattack(.@mobGID, getcharid(CHAR_ID_ACCOUNT)); // Order the summoned monster to engage!! } else if (.@n > 9850) { mes col("Hey wait... A monster!! Run for your life!!", 9); - getmapxy(.@m$, .@x, .@y); + getmapxy(.@m$, .@x, .@y, 0); .@mobGID = monster(.@m$, .@x, .@y, "Blub", Blub, 1); unitattack(.@mobGID, getcharid(CHAR_ID_ACCOUNT)); // Order the summoned monster to engage!! } else if (.@n > 9800) { mes col("Hey wait... A monster!! Run for your life!!", 9); - getmapxy(.@m$, .@x, .@y); + getmapxy(.@m$, .@x, .@y, 0); .@mobGID = monster(.@m$, .@x, .@y, "Red Scorpion", RedScorpion, 1); unitattack(.@mobGID, getcharid(CHAR_ID_ACCOUNT)); // Order the summoned monster to engage!! } } else if (.@n > 9700) { mes col("Hey wait... A monster!! Run for your life!!", 9); - getmapxy(.@m$, .@x, .@y); + getmapxy(.@m$, .@x, .@y, 0); .@mobGID = monster(.@m$, .@x, .@y, "Bat", Bat, 1); unitattack(.@mobGID, getcharid(CHAR_ID_ACCOUNT)); // Order the summoned monster to engage!! } else { |