summaryrefslogtreecommitdiff
path: root/npc/custom/quests/sphinx_mask.txt
diff options
context:
space:
mode:
authoreuphyy <euphyy@54d463be-8e91-2dee-dedb-b68131a5f0ec>2012-06-10 01:37:17 +0000
committereuphyy <euphyy@54d463be-8e91-2dee-dedb-b68131a5f0ec>2012-06-10 01:37:17 +0000
commitadfbb8ff8fdde71238cdf5f51a5a2edc5a29c937 (patch)
treea8455792f17eabf4040ee6db3f54da24f14b8482 /npc/custom/quests/sphinx_mask.txt
parent0e8fb0bb70974a90d8b4617043b78fe3575f8e45 (diff)
downloadhercules-adfbb8ff8fdde71238cdf5f51a5a2edc5a29c937.tar.gz
hercules-adfbb8ff8fdde71238cdf5f51a5a2edc5a29c937.tar.bz2
hercules-adfbb8ff8fdde71238cdf5f51a5a2edc5a29c937.tar.xz
hercules-adfbb8ff8fdde71238cdf5f51a5a2edc5a29c937.zip
* Massive compression of "Card Trader" script, from 123kb to 7kb! (other\card_trader.txt)
* Some optimization of Ash-Vacuum quests (quests\quests_13_1.txt) * "Sphinx Mask Quest" script optimized (custom\quests\sphinx_mask.txt) * Moved "Caral" NPC from non-existent moc_fild04 to cmd_fild08, as per bugreport:5959 (custom\quests\thq\THQS_Quests.txt) * Fixed Job_Archbishop/Job_Archbishop_T typos in job change script, but other issues in bugreport:5938 not addressed (jobs\3-1\archbishop.txt) git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16254 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/custom/quests/sphinx_mask.txt')
-rw-r--r--npc/custom/quests/sphinx_mask.txt86
1 files changed, 30 insertions, 56 deletions
diff --git a/npc/custom/quests/sphinx_mask.txt b/npc/custom/quests/sphinx_mask.txt
index 8c1a42072..00910428c 100644
--- a/npc/custom/quests/sphinx_mask.txt
+++ b/npc/custom/quests/sphinx_mask.txt
@@ -3,76 +3,50 @@
//===== By: ==================================================
//= sabernet09
//===== Current Version: =====================================
-//= 1.2
+//= 1.3
//===== Compatible With: =====================================
//= rAthena SVN
//===== Description: =========================================
-//= this quest is related to Umbalian Chief
+//= This quest is related to Umbalian Chief.
//= 1.1 Removed it from official Umbala quests [Lupus]
//= 1.2 Added a missing variable (sphmask_q) [erKURITA]
+//= 1.3 Optimized, and coordinates moved. [Euphy]
//============================================================
-morocc,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!";
+morocc,208,90,6 script Turban Thief 58,{
+ mes "[Turban Thief]";
+ if(event_umbala < 2) {
+ mes "What do you wan te withz me? Be gone!";
+ close; }
+ if(sphmask_q) {
+ mes "You have no more business with me, go away!";
+ close; }
+ 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?";
+ callsub L_Menu,1,"1,000,000",1000000;
+ callsub L_Menu,2,"750,000",750000;
+ callsub L_Menu,3,"500,000",500000;
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,
+ mes "Ack! Forgez it! I can do bettaz en elsez where!";
set sphmask_q,1;
close;
-NoGo:
+L_Menu:
mes "[Turban Thief]";
- mes "Ahh a business man are you no? Fine, how about...";
+ switch(getarg(0)) {
+ case 1: 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?"; break;
+ case 2: mes "Ahh a business man are you no? Fine, how about..."; break;
+ case 3: mes "Hmmm... you drive a hard bargain, ok... my final offer..."; break; }
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,
+ if(select("Pay "+getarg(1)+"z:No deal")==2) return;
+ mes "[Turban Thief]";
+ if (Zeny < getarg(2)) {
+ mes "Are youz playin wit me? You don't have ze money!";
+ close; }
+ set Zeny, Zeny-getarg(2);
+ mes "O ho ho, it's a deal, then!";
+ getitem 7114,1;
set sphmask_q,1;
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