summaryrefslogtreecommitdiff
path: root/npc/quests/newgears/mushroom_hairband.txt
diff options
context:
space:
mode:
authorLupus <Lupus@54d463be-8e91-2dee-dedb-b68131a5f0ec>2004-12-07 13:51:38 +0000
committerLupus <Lupus@54d463be-8e91-2dee-dedb-b68131a5f0ec>2004-12-07 13:51:38 +0000
commit5d1d55adc1b889b8a670c9db2459c06e70c916e7 (patch)
tree557469119828b7fdca6c531711475f8c3d5f284b /npc/quests/newgears/mushroom_hairband.txt
parentcef44b0916ccffb9ac8d24460b302949e7367b04 (diff)
downloadhercules-5d1d55adc1b889b8a670c9db2459c06e70c916e7.tar.gz
hercules-5d1d55adc1b889b8a670c9db2459c06e70c916e7.tar.bz2
hercules-5d1d55adc1b889b8a670c9db2459c06e70c916e7.tar.xz
hercules-5d1d55adc1b889b8a670c9db2459c06e70c916e7.zip
fixed 16 newgear quests
(each contained 1-4 bugs: missing labels, wrong labels, wrong items amount, missing checks, missing delitem wrong item ID ,etc ) git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/branches/stable@488 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/quests/newgears/mushroom_hairband.txt')
-rw-r--r--npc/quests/newgears/mushroom_hairband.txt44
1 files changed, 26 insertions, 18 deletions
diff --git a/npc/quests/newgears/mushroom_hairband.txt b/npc/quests/newgears/mushroom_hairband.txt
index ba417c647..87f6c4baf 100644
--- a/npc/quests/newgears/mushroom_hairband.txt
+++ b/npc/quests/newgears/mushroom_hairband.txt
@@ -1,50 +1,58 @@
-//===== eAthena Script =======================================
+//===== eAthena Script =======================================
//= Mushroom Hairband Quest
//===== By: ==================================================
//= Halca (1.0)
//= Mass Zero (1.1)
//===== Current Version: =====================================
-//= 1.1
+//= 1.2
//===== Compatible With: =====================================
//= Any eAthena Version.
//===== Description: =========================================
//= Seperate Mushroom Hairband quest.
//===== Additional Comments: =================================
-//=
+//= 1.2 Fixed wrong labels, added missing text [Lupus]
//============================================================
prontera.gat,66,87,6 script Aipo 819,{
mes "[Aipo]";
+ If (Class == 0) GOTO L_NOVICE;
mes "Heeeeee.";
- next;
+ next;
mes "[Aipo]";
mes "Have you ever wondered what you would look like with a ^000080Mushroom Hairband^000000?";
mes "Well, I can make you one If you like, just give me 300 Mushroom Spores!";
- next;
+ next;
mes "[Aipo]";
mes "This wondrous item grew in the depths of a gave and needs the spores for the final";
mes "materials neededm";
mes "Want me to make it for you?";
- next;
- menu "Yes! Now make me the item!",-,"No, thanks!",EXT;
- if (countitem(921) < 300) GOTO NM_EXT;
+ next;
+ menu "Yes! Now make me the item!",-,"No, thanks!",M_EXIT;
+
+ if (countitem(921) < 300) GOTO L_NOITEM;//Items: Mushroom Spore,
mes "[Aipo]";
mes "Wow! Thanks! Lemme make the item then.";
- next;
- delitem 921,300;
+ next;
+ delitem 921,300;//Items: Mushroom Spore,
mes "[Aipo]";
mes "Okay, thanks for the items, now yours in return!";
- next;
- getitem 5082,1;
+ next;
+ getitem 5082,1;//Items: Mushroom Hairband,
mes "[Aipo]";
mes "Thanks again! Bye!";
- close;
-NM_EXT:
+ close;
+
+L_NOITEM:
mes "[Aipo]";
mes "You don't have enough Mushroom Spores... sorry!";
- close;
-EXT:
+ close;
+
+L_NOVICE:
+ mes "I love musrooms. I wanna be their master one day...";
+ close;
+
+M_EXIT:
mes "[Aipo]";
mes "Well, I'm always here If you change your mind!";
- close;
-} \ No newline at end of file
+ close;
+}