summaryrefslogtreecommitdiff
path: root/npc/quests/newgears/sea_otter_hat.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/sea_otter_hat.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/sea_otter_hat.txt')
-rw-r--r--npc/quests/newgears/sea_otter_hat.txt43
1 files changed, 23 insertions, 20 deletions
diff --git a/npc/quests/newgears/sea_otter_hat.txt b/npc/quests/newgears/sea_otter_hat.txt
index 7ca272032..87e302192 100644
--- a/npc/quests/newgears/sea_otter_hat.txt
+++ b/npc/quests/newgears/sea_otter_hat.txt
@@ -4,47 +4,50 @@
//= Halca (1.0)
//= Mass Zero (1.1)
//===== Current Version: =====================================
-//= 1.1
+//= 1.2
//===== Compatible With: =====================================
//= Any eAthena Version.
//===== Description: =========================================
//= Seperate Seo Otter Hat quest.
//===== Additional Comments: =================================
-//=
+//= 1.2 Fixed wrong labels, added missing text [Lupus]
//============================================================
xmas.gat,184,267,4 script Pretty Rency 818,{
mes "[Pretty Rency]";
mes "Wow! you heard of a Sea Otter Hat?";
- next;
+ next;
mes "[Pretty Rency]";
mes "The requirements for this item, are very simple:";
- mes "1 Raccoon Hat,";
- mes "1 Transform Leaf";
- next;
+ mes "1 Lazy Racoon Hat,";
+ mes "1 Transformation Leaf";
+ next;
mes "[Pretty Rency]";
mes "Do you have these items?";
- next;
- menu "Yes.",-,"No.",EXT;
- if ((countitem(5084) < 1) || (countitem(5064) < 1)) GOTO NM_EXT;
+ next;
+ menu "Yes.",-,"No.",M_EXIT;
+
+ if ((countitem(5084) < 1) || (countitem(5064) < 1)) GOTO L_NOITEM;//Items: Lazy Racoon Hat, Transformation Leaf,
mes "[Pretty Rency]";
mes "Congratulations!";
- next;
- delitem 5084,1;
- delitem 5064,1;
+ next;
+ delitem 5084,1;//Items: Lazy Racoon Hat,
+ delitem 5064,1;//Items: Transformation Leaf,
mes "[Pretty Rency]";
mes "Thanks for your items! Now I will make yours for you!";
- next;
- getitem 5078,1;
+ next;
+ getitem 5078,1;//Items: Sea Otter Hat,
mes "[Pretty Rency]";
mes "Thanks! Byeeeeeee!";
- close;
-NM_EXT:
+ close;
+
+L_NOITEM:
mes "[Pretty Rency]";
mes "Sorry, not enough items.";
- close;
-EXT:
+ close;
+
+M_EXIT:
mes "[Pretty Rency]";
mes "Byebye! Have a nice time in the world of Ragnarok!";
- close;
-} \ No newline at end of file
+ close;
+}