diff options
author | Sirius <zopokx@gmail.com> | 2013-05-26 17:45:43 -0700 |
---|---|---|
committer | Sirius <zopokx@gmail.com> | 2013-05-26 17:45:43 -0700 |
commit | 8bc266493d752703735b5d29b89247c746255ccf (patch) | |
tree | b52b56c6e6cdbb4f92a0bfb506ef9f5d8f1392c0 /npc/re/quests/eden/56-70.txt | |
parent | f68d0c0b7c7c2285c03d9546ecf7121be3b3875c (diff) | |
download | hercules-8bc266493d752703735b5d29b89247c746255ccf.tar.gz hercules-8bc266493d752703735b5d29b89247c746255ccf.tar.bz2 hercules-8bc266493d752703735b5d29b89247c746255ccf.tar.xz hercules-8bc266493d752703735b5d29b89247c746255ccf.zip |
Argh! I hate the fact of having several repositories. Thanks again, Euphy!
Diffstat (limited to 'npc/re/quests/eden/56-70.txt')
-rw-r--r-- | npc/re/quests/eden/56-70.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/re/quests/eden/56-70.txt b/npc/re/quests/eden/56-70.txt index 4bf3f9863..02e66d452 100644 --- a/npc/re/quests/eden/56-70.txt +++ b/npc/re/quests/eden/56-70.txt @@ -61,7 +61,7 @@ L_Quest: mes "Would you like to accept this mission?"; next; if(select("Accept the mission.:Do not accept the mission.") == 2) { - if ((BaseLevel < 56) && (BaseLevel > 70)) { + if ((BaseLevel < 56) || (BaseLevel > 70)) { mes "These missions are not fit for my level. I should look for other missions."; close; } @@ -97,7 +97,7 @@ L_HuntingQuest: mes "Would you like to accept this mission?"; next; if(select("Accept the mission.:Do not accept the mission.") == 2) { - if ((BaseLevel < 56) && (BaseLevel > 70)) { + if ((BaseLevel < 56) || (BaseLevel > 70)) { mes "These missions are not fit for my level. I should look for other missions."; close; } |