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/newgears/bear_hat.txt | 69 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 69 insertions(+) create mode 100644 npc/quests/newgears/bear_hat.txt (limited to 'npc/quests/newgears/bear_hat.txt') diff --git a/npc/quests/newgears/bear_hat.txt b/npc/quests/newgears/bear_hat.txt new file mode 100644 index 000000000..a2c0aece1 --- /dev/null +++ b/npc/quests/newgears/bear_hat.txt @@ -0,0 +1,69 @@ +//===== eAthena Script ======================================= +//= Bear Hat Quest +//===== By: ================================================== +//= Halca (1.0) +//= Mass Zero (1.1) +//===== Current Version: ===================================== +//= 1.4a +//===== Compatible With: ===================================== +//= Any eAthena Version. +//===== Description: ========================================= +//= Seperate Bear hat quest. +//===== Additional Comments: ================================= +//= 1.2 Fixed wrong labels, added missing text, added missing +//= items check [Lupus] +//= 1.3 Fixed possible exploit [Lupus] +//= 1.4 Changed ingredients (Zipper>Bear Skin) [Lupus] +//============================================================ + +xmas.gat,152,176,3 script Bora 826,{ + mes "[Bora]"; + mes "Don't bears have such a cute expression on their faces?"; + mes "And I bet you wouldn't mind one of those cute expressions yourself!"; + next; + mes "[Bora]"; + mes "Well, I can make you a Bear Hat!"; + next; + menu "Yes, make me one now!",-,"What are the requirements?",M_REQ,"No, thanks.",M_EXIT; + + if(countitem(5030) < 1 || countitem(7213) < 100 || countitem(7217) < 100 || countitem(7161) < 300) GOTO L_NOITEM;//Items: Panda Hat, Needle Packet, Spool of Thread, Bear Skin, + delitem 5030,1;//Items: Panda Hat, + delitem 7213,100;//Items: Needle Packet, + delitem 7217,100;//Items: Spool of Thread, + delitem 7161,300;//Items: Bear Skin, + mes "[Bora]"; + mes "Yay! now I can make my famous Bear Hat!"; + mes "Now, give me your items!"; + next; + mes "[Bora]"; + mes "Now I will give you the hat!"; + next; + getitem 5059,1;//Items: Bear Hat, + mes "[Bora]"; + mes "Thanks, and bye!"; + close; + +M_REQ: + mes "[Bora]"; + mes "Bring me..."; + mes "1 Panda Hat,"; + mes "100 Needle Packet,"; + mes "100 Spool of Thread,"; + mes "300 Bear Skins."; + next; + mes "[Bora]"; + mes "For the Pin Cushion and Spool of Thread,"; + mes "Hyzoloists in Niflheim drop those, I believe."; + close; + +L_NOITEM: + mes "[Bora]"; + mes "Sorry, I want all the items I asked."; + mes "Please dont try to cheat me."; + close; + +M_EXIT: + mes "[Bora]"; + mes "Okay, well, byebye!"; + close; +} -- cgit v1.2.3-70-g09d2