diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-10-05 11:34:32 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-11-29 19:30:08 +0300 |
commit | 116559f536f92e1ec775cbd2d6c67eaf66f86ffa (patch) | |
tree | d5a9ad4684e6a903dfd0f60c843ff9411350c219 /npc/custom/quests/jewel_case.txt | |
parent | 7b0b88b5b25e92aa54e8993323c7443c2935d2e0 (diff) | |
download | hercules-116559f536f92e1ec775cbd2d6c67eaf66f86ffa.tar.gz hercules-116559f536f92e1ec775cbd2d6c67eaf66f86ffa.tar.bz2 hercules-116559f536f92e1ec775cbd2d6c67eaf66f86ffa.tar.xz hercules-116559f536f92e1ec775cbd2d6c67eaf66f86ffa.zip |
Remove conf dir.
Diffstat (limited to 'npc/custom/quests/jewel_case.txt')
-rw-r--r-- | npc/custom/quests/jewel_case.txt | 62 |
1 files changed, 0 insertions, 62 deletions
diff --git a/npc/custom/quests/jewel_case.txt b/npc/custom/quests/jewel_case.txt deleted file mode 100644 index 509819626..000000000 --- a/npc/custom/quests/jewel_case.txt +++ /dev/null @@ -1,62 +0,0 @@ -//===== Hercules Script ====================================== -//= Jewel Case Quest -//===== By: ================================================== -//= Lupus -//===== Current Version: ===================================== -//= 1.0 -//===== Description: ========================================= -//= A quest for players at base level 99, -//= with Jewel Case as a reward. -//============================================================ - -lighthalzen,108,229,2 script La Fenn 4_M_JPNOJI,{ - mes "[La Fenn]"; - if(BaseLevel<99) { - if(Q_99LVL) { - mes "You... You got younger!!! But you are defenitely YOU!"; - mes "I couldn't think you were able to meet my condition..."; - emotion e_hmm; - next; - mes "[La Fenn]"; - mes "Here is your prize. It's yours for good."; - set Q_99LVL,0; - getitem Accessory_Box,1; //Jewel Case - emotion e_grat; - } else { - mes callfunc("F_Hi"); - mes "..."; - emotion e_yawn; - next; - mes "[La Fenn]"; - mes "I've got a riddle for a strong man of 2nd Class and 99 Base Level."; - mes "*Yawn* If you meet some, please tell them about my riddle."; - } - close; - } - if(BaseLevel==99 && Upper==0) { - if(Q_99LVL) { - mes "Now go forth and get younger!"; - mes "If you solve my riddle, then I'll give you a magical Jewel Case with a rare accessory."; - } else { - mes callfunc("F_Hi")+" The Hero!"; - if(BaseExp<1000000) { - mes "Now you're strong."; - mes "But... not quite strong for my riddle."; - if(rand(2)) { - mes "Kill "+((1000000-BaseExp)/3765+1)+" more Seals and return."; - } else { - mes "Kill "+((1000000-BaseExp)/81+1)+" more Poporings and come back."; - } - } else { - mes "Now you're REALLY strong."; - mes "And if you get younger than now I'll give you my treasure."; - set Q_99LVL,1; - emotion e_no1; - } - } - close; - } - emotion e_hmm; - mes "..."; - close; -} |