summaryrefslogtreecommitdiff
path: root/npc/warps/fields/abyss_warper.txt
diff options
context:
space:
mode:
authorValaris <Valaris@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-01-29 16:10:48 +0000
committerValaris <Valaris@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-01-29 16:10:48 +0000
commit620e60eebce2c1f35c5c9a82f6ca365b316587f5 (patch)
tree38a39e0415f419d9a49ae456ed0e26654c23d559 /npc/warps/fields/abyss_warper.txt
parenta2675f07d7da22a7c6ae11f545bf8f671e785a82 (diff)
downloadhercules-620e60eebce2c1f35c5c9a82f6ca365b316587f5.tar.gz
hercules-620e60eebce2c1f35c5c9a82f6ca365b316587f5.tar.bz2
hercules-620e60eebce2c1f35c5c9a82f6ca365b316587f5.tar.xz
hercules-620e60eebce2c1f35c5c9a82f6ca365b316587f5.zip
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
Diffstat (limited to 'npc/warps/fields/abyss_warper.txt')
-rw-r--r--npc/warps/fields/abyss_warper.txt75
1 files changed, 75 insertions, 0 deletions
diff --git a/npc/warps/fields/abyss_warper.txt b/npc/warps/fields/abyss_warper.txt
new file mode 100644
index 000000000..807c88fd2
--- /dev/null
+++ b/npc/warps/fields/abyss_warper.txt
@@ -0,0 +1,75 @@
+//===== Athena Script ========================================
+//= Abyss Cave Warper
+//===== By: ==================================================
+//= erKURITA
+//===== Current Version: =====================================
+//= 1.0
+//===== Compatible With: =====================================
+//= Any Athena Version
+//===== Description: =========================================
+//= Warper to Abyss Cave. and warper out
+//===== Additional Comments: =================================
+//= 1.0 Added by Nexon [Nexon]
+//============================================================
+
+hu_fild05.gat,168,303,0 script Pillar 111,{
+ mes "[Ancient Voice]";
+ mes "So, you wish access to the Abyss Cave?";
+ mes "You have to bring me then 1 Dragon Canine, 1 Dragon Tail and 1 Dragon Scale";
+ mes "in order to grant you access to the island";
+ next;
+ mes "[Ancient Voice]";
+ mes "Do you wish to go?";
+ next;
+ menu "Yes",L_Check,"No",-;
+ mes "Return when you are ready.";
+ close;
+
+L_Check:
+ mes "[Ancient Voice]";
+ mes "Good, let me check your items first";
+ next;
+ mes "[Ancient Voice]";
+ if ((countitem(1035) == 0) || (countitem(1036) == 0) || (countitem(1037) == 0)) goto L_No_Items;
+ mes "Good, I hereby grant you access then";
+ mes "Please hurry. The entrance will not stay open for long";
+ close2;
+ delitem 1035,1;
+ delitem 1036,1;
+ delitem 1037,1;
+ enablenpc "warpabyss";
+ initnpctimer;
+ warp "hu_fild05",181,197;
+ end;
+
+L_No_Items:
+ mes "You dont have enough items";
+ close;
+
+OnTimer10000:
+ disablenpc "warpabyss";
+ stopnpctimer;
+ setnpctimer 0;
+ end;
+
+OnInit:
+ disablenpc "warpabyss";
+ end;
+}
+
+
+hu_fild05.gat,171,212,0 script Pillar 111,{
+ mes "[Ancient Voice]";
+ mes "Leave the island?";
+ next;
+ menu "Yes",-,"No",L_close;
+ warp "hu_fild05.gat",168,301;
+ end;
+
+L_close:
+ mes "[Ancient Voice]";
+ mes "Return when you are ready.";
+ close;
+}
+
+hu_fild05.gat,197,210,0 warp warpabyss 2,3,abyss_01.gat,264,271