summaryrefslogtreecommitdiff
path: root/npc/custom/quests/magicalhatquest.txt
diff options
context:
space:
mode:
authoreuphyy <euphyy@54d463be-8e91-2dee-dedb-b68131a5f0ec>2012-07-13 03:35:32 +0000
committereuphyy <euphyy@54d463be-8e91-2dee-dedb-b68131a5f0ec>2012-07-13 03:35:32 +0000
commitb07b02bc7899abd47d043731869b4bfa7626f8e4 (patch)
treef1551836c875e25ac4995e17e121953836b8ccf8 /npc/custom/quests/magicalhatquest.txt
parentf05fd3073a27cfb8f8432f25917aad974ad9c1a6 (diff)
downloadhercules-b07b02bc7899abd47d043731869b4bfa7626f8e4.tar.gz
hercules-b07b02bc7899abd47d043731869b4bfa7626f8e4.tar.bz2
hercules-b07b02bc7899abd47d043731869b4bfa7626f8e4.tar.xz
hercules-b07b02bc7899abd47d043731869b4bfa7626f8e4.zip
* Added mine and tr0n's quest scripts to /custom/quests/
* Added GmOcean's Disguise Event, Mysterious' Mushroom Event, and Keale's Cluckers Event (all edited) to /custom/events/ * Moved Quest Warper into /etc/ * Deleted custom Fashionable Glasses quest, duplicate of official NPC "Zic" (custom/quests/fashion.txt) * Deleted custom Hyegun event (custom/events/hyegun_event.txt) * Deleted custom Dracula event (custom/events/draculax.txt) * Deleted custom Wizard Hat quest (custom/quests/magicalhatquest.txt) git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16421 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/custom/quests/magicalhatquest.txt')
-rw-r--r--npc/custom/quests/magicalhatquest.txt58
1 files changed, 0 insertions, 58 deletions
diff --git a/npc/custom/quests/magicalhatquest.txt b/npc/custom/quests/magicalhatquest.txt
deleted file mode 100644
index 145ea0f27..000000000
--- a/npc/custom/quests/magicalhatquest.txt
+++ /dev/null
@@ -1,58 +0,0 @@
-//===== rAthena Script =======================================
-//= Wizard Hat Custom Quest
-//===== By: ==================================================
-//= Who
-//===== Current Version: =====================================
-//= 1.1
-//===== Compatible With: =====================================
-//= rAthena SVN
-//===== Description: =========================================
-//= Wizard Hat quest. Harmless, doesn't screw game balance.
-//===== Additional Comments: =================================
-//= 1.1 Reversed ingreadients and the quest result due to
-//= treasue boxes drops fix [Lupus]
-//============================================================
-
-geffen,126,107,5 script Wizard Hat Dude 51,{
- mes "[Wizard Hat Dude]";
- mes "Huh! What do you want?";
- mes "Ohh, I see, you want me to make you something.";
- emotion e_what;
- next;
- mes "[Wizard Hat Dude]";
- mes "Well if you want this Wizard Hat here is a list of the items I need you to go out and get them for me:";
- mes "1 Magican Hat";
- mes "1 Bathory Card";
- mes "and 200,000z for my efforts";
- next;
- mes "[Wizard Hat Dude]";
- mes "Are you ready for me to make this magical item?";
- next;
- menu "Sure am!",-,"These requirements are unfathomable!",M_RIPOFF;
-
- mes "[Wizard Hat Dude]";
- if(countitem(5045) < 1 || countitem(4119) < 1 || Zeny < 200000) goto L_NotEnough;
- delitem 5045,1;
- delitem 4119,1;
- set Zeny,Zeny-200000;
- mes "Wow! You are brave indeed!";
- emotion e_no1;
- next;
- mes "[Wizard Hat Dude]";
- mes "Enjoy your Wizard Hat!";
- getitem 2252,1;
- close;
-
-L_NotEnough:
- 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!";
- emotion e_sry;
- close;
-
-M_RIPOFF:
- mes "[Wizard Hat Dude]";
- mes "What I had to go through was more unfathomable..";
- mes "If you succeed in getting these items, you will have incredible strength!";
- emotion e_hmm;
- close;
-}