diff options
author | Kargha <Kargha@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-07-12 21:33:11 +0000 |
---|---|---|
committer | Kargha <Kargha@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-07-12 21:33:11 +0000 |
commit | fca5381091e60b7ba84447d520a91ac4a6a30515 (patch) | |
tree | 59f47937c458959ea469ec771890d0fc72d5f62a /npc | |
parent | 7bc0bc0c193686399324045675369cba876cee63 (diff) | |
download | hercules-fca5381091e60b7ba84447d520a91ac4a6a30515.tar.gz hercules-fca5381091e60b7ba84447d520a91ac4a6a30515.tar.bz2 hercules-fca5381091e60b7ba84447d520a91ac4a6a30515.tar.xz hercules-fca5381091e60b7ba84447d520a91ac4a6a30515.zip |
Fixed a small error
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@7646 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc')
-rw-r--r-- | npc/cities/einbroch.txt | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/npc/cities/einbroch.txt b/npc/cities/einbroch.txt index 59a1232c0..c79fd154c 100644 --- a/npc/cities/einbroch.txt +++ b/npc/cities/einbroch.txt @@ -1336,12 +1336,12 @@ s_Switches: delitem 7319,10;
set EinFactory,16;
if (BaseLevel < 41) set BaseExp,BaseExp+615;
- if ((BaseLevel >= 40) && (BaseLevel < 50)) set BaseExp,BaseExp+3075;
- if ((BaseLevel >= 50) && (BaseLevel < 60)) set BaseExp,BaseExp+6604;
- if ((BaseLevel >= 60) && (BaseLevel < 70)) set BaseExp,BaseExp+18508;
- if ((BaseLevel >= 70) && (BaseLevel < 80)) set BaseExp,BaseExp+32062;
- if ((BaseLevel >= 80) && (BaseLevel < 90)) set BaseExp,BaseExp+76026;
- if (BaseLevel >= 90) set BaseExp,BaseExp+290675;
+ if ((BaseLevel >= 41) && (BaseLevel < 51)) set BaseExp,BaseExp+3075;
+ if ((BaseLevel >= 51) && (BaseLevel < 61)) set BaseExp,BaseExp+6604;
+ if ((BaseLevel >= 61) && (BaseLevel < 71)) set BaseExp,BaseExp+18508;
+ if ((BaseLevel >= 71) && (BaseLevel < 81)) set BaseExp,BaseExp+32062;
+ if ((BaseLevel >= 81) && (BaseLevel < 91)) set BaseExp,BaseExp+76026;
+ if (BaseLevel >= 91) set BaseExp,BaseExp+290675;
mes "[Zelmeto]";
mes "I don't know how";
mes "I can possible pay you";
|