summaryrefslogtreecommitdiff
path: root/npc/quests/magicalhatquest.txt
diff options
context:
space:
mode:
authorValaris <Valaris@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-01-29 16:00:45 +0000
committerValaris <Valaris@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-01-29 16:00:45 +0000
commita2675f07d7da22a7c6ae11f545bf8f671e785a82 (patch)
tree4b825dc642cb6eb9a060e54bf8d69288fbee4904 /npc/quests/magicalhatquest.txt
parentb8801ae9585201eaaf9fdf80d9c7117ee18f52e2 (diff)
downloadhercules-a2675f07d7da22a7c6ae11f545bf8f671e785a82.tar.gz
hercules-a2675f07d7da22a7c6ae11f545bf8f671e785a82.tar.bz2
hercules-a2675f07d7da22a7c6ae11f545bf8f671e785a82.tar.xz
hercules-a2675f07d7da22a7c6ae11f545bf8f671e785a82.zip
Clearing trunk.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@5091 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/quests/magicalhatquest.txt')
-rw-r--r--npc/quests/magicalhatquest.txt40
1 files changed, 0 insertions, 40 deletions
diff --git a/npc/quests/magicalhatquest.txt b/npc/quests/magicalhatquest.txt
deleted file mode 100644
index 295a59d7e..000000000
--- a/npc/quests/magicalhatquest.txt
+++ /dev/null
@@ -1,40 +0,0 @@
-geffen.gat,126,107,5 script Magic Pimp Hat Dude 51,{
- mes "[Magic Pimp Hat Dude]";
- mes "Huh! What do you want?";
- mes "Ohh, I see, you want me to make you something";
- mes "Well if you want this Magican Hat here is a list of the items I need you to go out and get them for me:";
- mes "1 Wizard Hat";
- mes "1 Bathory Card";
- mes "and 200,000z for my efforts";
- next;
- mes "[Magic Pimp Hat Dude]";
- mes ". . . . . .";
- mes "Are you ready for me to make this magical item?";
- next;
- menu "Sure am!",LSureAm,"These requirements are unfathomable!",LUnfathomable;
-
- LSureAm:
- mes "[Magic Pimp Hat Dude]";
- if((countitem(2252) < 1) || (countitem(4119) < 1) || (Zeny < 200000)) goto LNotEnough;
- mes ". . . . .";
- delitem 2252,1;
- delitem 4119,1;
- set Zeny,Zeny-200000;
- mes "Wow! You are brave indeed!";
- getitem 5045,1;
- mes ". . . . .";
- mes "Enjoy your Magical Hat!";
- close;
-
- LNotEnough:
- mes ". . . . .";
- mes ". . .I'm sorry .. You don't have enough money and items ..";
- mes "I can't afford to make this if you don't bring all materials needed. Please understand this is to benefit heroes such as yourself!";
- close;
-
- LUnfathomable:
- mes ". . . . .";
- mes "What I had to go through was more unfathomable..";
- mes "If you succeed in getting these items, you will have incredible strength!";
- close;
-}