diff options
author | SinSloth <SinSloth@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-09-10 13:15:55 +0000 |
---|---|---|
committer | SinSloth <SinSloth@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-09-10 13:15:55 +0000 |
commit | e536ed30725598649b8a41125a15b055362472af (patch) | |
tree | c0905b9ef113acc77b233904084d45fec17d9fb0 /npc/quests/quests_ayothaya.txt | |
parent | f15d4f0e1e7f7d3aad96e3df66c040b2e8cbb16f (diff) | |
download | hercules-e536ed30725598649b8a41125a15b055362472af.tar.gz hercules-e536ed30725598649b8a41125a15b055362472af.tar.bz2 hercules-e536ed30725598649b8a41125a15b055362472af.tar.xz hercules-e536ed30725598649b8a41125a15b055362472af.zip |
* Updated experience rewards in a lot of quests to match upcoming rate adjustments changes.
- Please use 'getexp' command when rewarding experience in any lore-related quest.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11165 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/quests/quests_ayothaya.txt')
-rw-r--r-- | npc/quests/quests_ayothaya.txt | 39 |
1 files changed, 20 insertions, 19 deletions
diff --git a/npc/quests/quests_ayothaya.txt b/npc/quests/quests_ayothaya.txt index d1419003c..6c0fa345d 100644 --- a/npc/quests/quests_ayothaya.txt +++ b/npc/quests/quests_ayothaya.txt @@ -3,7 +3,7 @@ //===== By =================================================== //= Fredzilla, MasterOfMuppets //===== Version ============================================== -//= 1.7 +//= 1.8 //===== Compatible With ====================================== //= eAthena 1.0 //===== Description ========================================== @@ -29,6 +29,7 @@ //= 1.6 Moved quests from cities/ to here: //= Shrimp, Dungeon, Tom Yum Goong [Evera] //= 1.7 Updated the Ayothaya Ring quest to the official one [MasterOfMuppets] +//= 1.8 Fixed experience gains to match upcoming rate adjustments. [SinSloth] //============================================================ //============================================================ @@ -747,23 +748,23 @@ ayo_dun02,91,264,3 script Haggard Man 841,{ mes "realigned every bone in your skeleton, placing them in the right spots. Strangely, you feel intense relaxation and refreshment instead of excruciating pain."; set thai_find,14; if(BaseLevel < 56) - set BaseExp,BaseExp+9000; + getexp 9000,0; else if(BaseLevel > 55 && BaseLevel < 61) - set BaseExp,BaseExp+10500; + getexp 10500,0; else if(BaseLevel > 60 && BaseLevel < 66) - set BaseExp,BaseExp+18684; + getexp 18684,0; else if(BaseLevel > 65 && BaseLevel < 71) - set BaseExp,BaseExp+27411; + getexp 27411,0; else if(BaseLevel > 70 && BaseLevel < 76) - set BaseExp,BaseExp+70757; + getexp 70757,0; else if(BaseLevel > 75 && BaseLevel < 81) - set BaseExp,BaseExp+130246; + getexp 130246,0; else if(BaseLevel > 80 && BaseLevel < 86) - set BaseExp,BaseExp+150340; + getexp 150340,0; else if(BaseLevel > 85 && BaseLevel < 91) - set BaseExp,BaseExp+182052; + getexp 182052,0; else if(BaseLevel > 90) - set BaseExp,BaseExp+406786; + getexp 406786,0; next; mes "[" +strcharinfo(0)+ "]"; mes "Whoa...?"; @@ -823,23 +824,23 @@ ayo_dun02,91,264,3 script Haggard Man 841,{ mes "realigned every bone in your skeleton, placing them in the right spots. Strangely, you feel intense relaxation and refreshment instead of excruciating pain."; set thai_find,14; if(BaseLevel < 56) - set BaseExp,BaseExp+9000; + getexp 9000,0; else if(BaseLevel > 55 && BaseLevel < 61) - set BaseExp,BaseExp+10500; + getexp 10500,0; else if(BaseLevel > 60 && BaseLevel < 66) - set BaseExp,BaseExp+18684; + getexp 18684,0; else if(BaseLevel > 65 && BaseLevel < 71) - set BaseExp,BaseExp+27411; + getexp 27411,0; else if(BaseLevel > 70 && BaseLevel < 76) - set BaseExp,BaseExp+70757; + getexp 70757,0; else if(BaseLevel > 75 && BaseLevel < 81) - set BaseExp,BaseExp+130246; + getexp 130246,0; else if(BaseLevel > 80 && BaseLevel < 86) - set BaseExp,BaseExp+150340; + getexp 150340,0; else if(BaseLevel > 85 && BaseLevel < 91) - set BaseExp,BaseExp+182052; + getexp 182052,0; else if(BaseLevel > 90) - set BaseExp,BaseExp+406786; + getexp 406786,0; next; mes "[" +strcharinfo(0)+ "]"; mes "Whoa...?"; |