summaryrefslogtreecommitdiff
path: root/npc/cities/prontera.txt
diff options
context:
space:
mode:
authorLupus <Lupus@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-05-31 09:42:24 +0000
committerLupus <Lupus@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-05-31 09:42:24 +0000
commit31bf1466cfeb3e4ea72c58c5ea715532f65dd28d (patch)
tree608aef61663e4879f14808d0ee04a1e8a324fc93 /npc/cities/prontera.txt
parentf2fd4a251da74bb8311c321e800f8fce9f5e5fef (diff)
downloadhercules-31bf1466cfeb3e4ea72c58c5ea715532f65dd28d.tar.gz
hercules-31bf1466cfeb3e4ea72c58c5ea715532f65dd28d.tar.bz2
hercules-31bf1466cfeb3e4ea72c58c5ea715532f65dd28d.tar.xz
hercules-31bf1466cfeb3e4ea72c58c5ea715532f65dd28d.zip
many quests variables are shrinked in 1 variable bits. UPDATE ALL YOUR OLD scripts!
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@6884 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/cities/prontera.txt')
-rw-r--r--npc/cities/prontera.txt22
1 files changed, 10 insertions, 12 deletions
diff --git a/npc/cities/prontera.txt b/npc/cities/prontera.txt
index af76c62d1..22701b18b 100644
--- a/npc/cities/prontera.txt
+++ b/npc/cities/prontera.txt
@@ -3,7 +3,7 @@
//===== By: ==================================================
//= kobra_k88
//===== Current Version: =====================================
-//= 1.5a
+//= 1.6
//===== Compatible With: =====================================
//= eAthena 7.15 +
//===== Description: =========================================
@@ -14,6 +14,7 @@
//= Spellchecked [massdriller]
//= 1.4 Optimized. Novices > 20 BaseJob can go to Culvert, too [Lupus]
//= 1.5a Added a Jawaii related npc [MasterOfMuppets]
+//= 1.6 Replaced sewer_prt with (MISC_QUEST & 8) [Lupus]
//============================================================
@@ -126,14 +127,8 @@ prontera.gat,102,287,5 script Shuger 98,{
// ------------------------------------------------------------------------------------------- Culvert -------------------------------------------------------------------------------\\
// Culvert Guardian ----------------------------------------------------
prt_fild05.gat,270,212,5 script Culvert Guardian 105,{
- if(sewer_prt == 1) goto L_WARP;
mes "[Culvert Guardian]";
- mes "Sorry, but only volunteers for the Culvert Campaign can go inside.";
- mes "Speak with the ^000077Recruiter^000000 about volunteering. He's located in the ^ff0000Prontera Chivalry^000000.";
- close;
-
- L_WARP:
- mes "[Culvert Guardian]";
+ if(MISC_QUEST & 8) {
mes "Here you are. The entrance of the Culvert. Are you sure you want to Go inside?";
next;
menu "Sure.",-,"Quit.",M_END;
@@ -141,12 +136,16 @@ prt_fild05.gat,270,212,5 script Culvert Guardian 105,{
warp "prt_sewb1.gat",131,247;
M_END:
close;
+ }
+ mes "Sorry, but only volunteers for the Culvert Campaign can go inside.";
+ mes "Speak with the ^000077Recruiter^000000 about volunteering. He's located in the ^ff0000Prontera Chivalry^000000.";
+ close;
}
// Recruiter -----------------------------------------------------------
prt_in.gat,88,105,2 script Recruiter 105,{
- if(sewer_prt == 1) goto L_WARP;
mes "[Recruiter]";
+ if(MISC_QUEST & 8) goto L_WARP;
mes "Let me inform about the official Notice from the Capital Defence Headquarter of Rune-Midgard Kingdom";
next;
mes "[Recruiter]";
@@ -188,14 +187,13 @@ prt_in.gat,88,105,2 script Recruiter 105,{
next;
mes "[Recruiter]";
mes "3 Red Potions, 1 Milk, and 1 Orange Potion for an emergency.";
- set sewer_prt,1;
+ set MISC_QUEST,MISC_QUEST | 8;
getitem 501,3;
getitem 519,1;
getitem 502,1;
next;
-
- L_WARP:
mes "[Recruiter]";
+ L_WARP:
mes "Are you ready? I will warp you to the Culvert.";
next;
warp "prt_fild05.gat",274,208;