diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-06-19 01:23:26 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-06-19 01:23:26 -0300 |
commit | b428f34a532e572d918ebe7f513b81d04c6a84dd (patch) | |
tree | 1adeb24f788c97709d6b5c97f42932d6d713f36a /npc/014-3/fountain.txt | |
parent | cc190fcba8d954d5782a65f7312b2f5dd2f43f10 (diff) | |
download | serverdata-b428f34a532e572d918ebe7f513b81d04c6a84dd.tar.gz serverdata-b428f34a532e572d918ebe7f513b81d04c6a84dd.tar.bz2 serverdata-b428f34a532e572d918ebe7f513b81d04c6a84dd.tar.xz serverdata-b428f34a532e572d918ebe7f513b81d04c6a84dd.zip |
Improvements to quest, I'll finish this tomorrow
Diffstat (limited to 'npc/014-3/fountain.txt')
-rw-r--r-- | npc/014-3/fountain.txt | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/npc/014-3/fountain.txt b/npc/014-3/fountain.txt index bfe9b6507..9078d1e14 100644 --- a/npc/014-3/fountain.txt +++ b/npc/014-3/fountain.txt @@ -90,7 +90,7 @@ L_Tier2Ok: mes col("Your body starts to glow. You're not sure why, the fountain did that!", 9); next; mesn; - mes l("I am the Magic Fountain of Hurnscald. You are qualified."); + mes l("I am the Magic Fountain of Hurnscald. You look qualified."); next; mesn; mes l("Your next step is to get the book of the Second Sage Of Fate."); @@ -104,13 +104,16 @@ L_Tier2Ok: // 4~6 minutes to finish in average. Each level grants 4~6 extra seconds. QUEST_ELEVARTEMPO=gettimetick(2)+rand((BaseLevel*4),(BaseLevel*6)); ST_TIER=6; + // Ref. 240 xp. You will be penalized with 1 xp for over-level. (waw...) + if (BaseLevel < 300) + getexp 300-BaseLevel, 0; mesn; mesq l("Run like the wind, @@! For you shall have only @@ to finish the ritual!", strcharinfo(0), FuzzyTime(QUEST_ELEVARTEMPO,2,2)); close; OnInit: .COST_PER_BOTTLE = 0; - .sex = G_MALE; + .sex = G_OTHER; .distance = 7; .@npcId = getnpcid(0, .name$); |