From ec5dccd7e5e955131af7cc7d0298310a81e9e272 Mon Sep 17 00:00:00 2001 From: Lupus Date: Mon, 11 Sep 2006 11:16:31 +0000 Subject: extracted custom umbalian quests to custom folder git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@8704 54d463be-8e91-2dee-dedb-b68131a5f0ec --- npc/custom/quests/sphinx_mask.txt | 78 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 78 insertions(+) create mode 100644 npc/custom/quests/sphinx_mask.txt (limited to 'npc/custom/quests/sphinx_mask.txt') diff --git a/npc/custom/quests/sphinx_mask.txt b/npc/custom/quests/sphinx_mask.txt new file mode 100644 index 000000000..43d755cc5 --- /dev/null +++ b/npc/custom/quests/sphinx_mask.txt @@ -0,0 +1,78 @@ +//===== eAthena Script ======================================= +//= Sphinx Mask Quest (custom) +//===== By: ================================================== +//= sabernet09 & eAthena Team +//===== Current Version: ===================================== +//= 1.1 +//===== Compatible With: ===================================== +//= eAthena 7.15 + +//===== Description: ========================================= +//= this quest is related to Umbalian Chief +//= 1.1 Removed it from official Umbala quests [Lupus] +//============================================================ + + +//=========================================================================== +morocc.gat,140,156,5 script Turban Thief 58,{ + if(event_umbala < 2) goto AWAY; + if(sphmask_q) goto NoBus; + mes "[Turban Thief]"; + mes "E'llo mah frien, would I interesst tu with this rare mask? Its value I assure you is real mah frien. Tis manific!"; + next; + mes "[Turban Thief]"; + mes "Wah? O ho ho ho, so you know thaz I steal dis from those savages no? Well I won'tz give it back. But I will for a pricez... wat you say?"; + next; + menu "Pay 1,000,000z",-,"No deal",NoGo; + + if(Zeny < 1000000) goto NotEnough; + set Zeny,Zeny-1000000; + mes "[Turban Thief]"; + mes "O ho ho, its a deal then!"; + getitem 7114,1;//Items: Sphinx Mask, + set sphmask_q,1; + close; + + NoGo: + mes "[Turban Thief]"; + mes "Ahh a business man are you no? Fine, how about..."; + next; + menu "Pay 750,000",-,"Nope lower",NoGoB; + + if(Zeny < 750000) goto NotEnough; + set Zeny,Zeny-750000; + mes "[Turban Thief]"; + mes "It is a done deal, no refunds!"; + getitem 7114,1;//Items: Sphinx Mask, + set sphmask_q,1; + close; + NoGoB: + mes "[Turban Thief]"; + mes "Hmmm... you drive a hard bargain, ok... my final offer..."; + next; + menu "Pay 500,000",-,"It can go lower than that.",NoGoC; + + if(Zeny < 500000) goto NotEnough; + set Zeny,Zeny-500000; + mes "[Turban Thief]"; + mes "Alright, here you go then..."; + getitem 7114,1;//Items: Sphinx Mask, + close; + NoGoC: + next; + mes "[Turban Thief]"; + mes "Ack! Forgez it! I can do bettaz en elsez where!"; + set sphmask_q,1; + close; + NoBus: + mes "[Turban Thief]"; + mes "You have no more business with me, go away!"; + close; + AWAY: + mes "[Turban Thief]"; + mes "What do you wan te withz me? Be gone!"; + close; + NotEnough: + mes "[Turban Thief]"; + mes "Are youz playin wit me? You don't have ze money!"; + close; +} \ No newline at end of file -- cgit v1.2.3-70-g09d2