From 620e60eebce2c1f35c5c9a82f6ca365b316587f5 Mon Sep 17 00:00:00 2001 From: Valaris Date: Sun, 29 Jan 2006 16:10:48 +0000 Subject: AS OF SVN REV. 5901, WE ARE NOW USING TRUNK. ALL UNTESTED BUGFIXES/FEATURES GO INTO TRUNK. IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK. EVERYTHING ELSE GOES INTO TRUNK AND WILL BE MERGED INTO STABLE BY VALARIS AND WIZPUTER. -- VALARIS git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@5094 54d463be-8e91-2dee-dedb-b68131a5f0ec --- npc/quests/quests_aldebaran.txt | 92 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 92 insertions(+) create mode 100644 npc/quests/quests_aldebaran.txt (limited to 'npc/quests/quests_aldebaran.txt') diff --git a/npc/quests/quests_aldebaran.txt b/npc/quests/quests_aldebaran.txt new file mode 100644 index 000000000..95f6dcca0 --- /dev/null +++ b/npc/quests/quests_aldebaran.txt @@ -0,0 +1,92 @@ +//===== eAthena Script ======================================= +//= Item Quest NPCs located in Aldebaran +//===== By: ================================================== +//= +//===== Current Version: ===================================== +//= 1.1 +//===== Compatible With: ===================================== +//= eAthena 7.15 + +//===== Description: ========================================= +//= 'Doctor Band', 'Feather Bonnet', 'Opera Masque', 'Sakkat Hat' Quests. +//===== Additional Comments: ================================= +//= Fully working +//= 1.1 Fixed Doctor Band items [Lupus] +//============================================================ + + +//=======================================================================================================// +// 'Doctor Band', 'Feather Bonnet', 'Opera Masque', 'Sakkat Hat' Quest +//=======================================================================================================// +aldeba_in.gat,152,166,4 script Trader 86,{ + mes "[Trader]"; + mes "Muhahaha! I am the Very Famous Enigmatic Dealer! I am always hustling and bustling in and out of Rune Midgard!"; + mes "Take a look at my RARE and UNIQUE items from ALL OVER the WORLD!!"; + next; + mes "(1) · ^3355FFDoctor Band^000000 :"; + mes "^FF55331 Red Bandana + 50 Iron + 1 Cracked Diamond + 3500 Zeny^000000."; + mes "(2) · ^3355FFFeather Bonnet^000000 :"; + mes "^FF55331 Romantic Gent + 300 Feather of Birds + 500 Zeny^000000."; + mes "(3) · ^3355FFOpera Masque^000000 :"; + mes "^FF553320 Iron + 1 Singing Plant + 5000 Zeny^000000."; + mes "(4) · ^3355FFSakkat Hat^000000 :"; + mes "^FF5533120 Trunk + 10000 Zeny^000000."; + next; + menu "Doctor Band",-, "Feather Bonnet",M_1, "Opera Masque",M_2, "Sakkat",M_3; + + mes "[Trader]"; + if(countitem(2275) == 0 || countitem(998) < 50 || countitem(733) == 0 || Zeny < 3500) goto L_CantMake; + delitem 2275,1;//Items: Red Bandana, + delitem 998,50;//Items: Iron, + delitem 733,1;//Items: Cracked deamond + set Zeny,Zeny - 3500; + mes "Hmm.... Do you have a.... MEDICAL LICENSE?!"; + emotion 1; + next; + mes "[Trader]"; + mes "I've heard about a well-known unlicensed physician 'Cuwaki'... I hope you don't get caught...."; + mes "Anyways it's your own buisness what you do... Take this."; + getitem 2273,1;//Items: Doctor Band, + close; + M_1: + mes "[Trader]"; + if(countitem(2247) == 0 || countitem(916) < 300 || Zeny < 500) goto L_CantMake;//Items: Romantic Gent, Feather of Birds, + delitem 2247,1;//Items: Romantic Gent, + delitem 916,300;//Items: Feather of Birds, + set Zeny,Zeny - 500; + mes "Umhahaha. You have good fashion sense. I know you had a hard time collecting these items, but this bonnet is definately worth it. Take it."; + emotion 18; + getitem 5018,1;//Items: Feather Bonnet, + close; + M_2: + mes "[Trader]"; + if(countitem(998) < 20 || countitem(707) == 0 || Zeny < 5000) goto L_CantMake;//Items: Iron, Singing Plant, + delitem 998,20;//Items: Iron, + delitem 707,1;//Items: Singing Plant, + set Zeny,Zeny - 5000; + mes "This is a pretty nice item. A little bit creepy looking though.... I think it gives off some kinda weird vibe. What do you think?"; + next; + mes "[Trader]"; + mes ".. You like it ..Alright.. Take it!"; + getitem 2281,1;//Items: Opera Masque, + close; + M_3: + mes "[Trader]"; + if(countitem(1019) < 120 || Zeny < 10000) goto L_CantMake;//Items: Trunk, + delitem 1019,120;//Items: Trunk, + set Zeny,Zeny - 10000; + mes "If you have a chance to visit the Village of Payon, please go meet the Sakkat Craftsman."; + mes "He's never sold a Sakkat to any other dealer but to me."; + next; + mes "[Trader]"; + mes "Because only I can recognize a Sakkat hats' quality. Due to the fact that it's so rare, the Sakkat Hat has become a very popular item!"; + next; + mes "[Trader]"; + mes "OK! Take it!"; + getitem 2280,1;//Items: Sakkat, + close; + + L_CantMake: + mes "You, fool! Check the requirements again..... you're not some kinda idiot are you? C'mon..... give me a break."; + emotion 6; + close; +} -- cgit v1.2.3-70-g09d2