summaryrefslogtreecommitdiff
path: root/npc/events/zondaman.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/events/zondaman.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/events/zondaman.txt')
-rw-r--r--npc/events/zondaman.txt50
1 files changed, 50 insertions, 0 deletions
diff --git a/npc/events/zondaman.txt b/npc/events/zondaman.txt
new file mode 100644
index 000000000..c65875c2b
--- /dev/null
+++ b/npc/events/zondaman.txt
@@ -0,0 +1,50 @@
+//===== Athena Script ========================================
+//= Zondaman Employees
+//===== By: ==================================================
+//= [Muad_Dib] 1.0a
+//===== Current Version: =====================================
+//= 1.0a
+//===== Compatible With: =====================================
+//= eAthena 1.0+
+//===== Description: =========================================
+//= Advanced Dungeon Warper
+//===== Additional Comments: =================================
+//= 08/06/05 : Added 1st Version. [Muad_Dib]
+//= Converted to eAthena format by Dr.Evil
+//============================================================
+
+
+prontera.gat,147,124,5 script Zondaman Employee 874,{
+ cutin "zonda_01",2;
+ mes "[Zondaman Employee]";
+ mes "Welcome to Zondaman Services.";
+ mes "Where can I send you today?";
+ next;
+ menu "Bibilan Dungeon 3F -> 4000 z",-,"Clocktower 3F -> 4000 z",L1,"Glastheim Entrance -> 4000 z",L2,"Cancel",M_END;
+
+ if (Zeny < 4000) goto L_Zeny;
+ set Zeny,Zeny-4000;
+ warp "iz_dun02.gat",235,210;
+ end;
+
+L1:
+ if (Zeny < 4000) goto L_Zeny;
+ set Zeny,Zeny-4000;
+ warp "c_tower3.gat",65,145;
+ end;
+
+L2:
+ if (Zeny < 4000) goto L_Zeny;
+ set Zeny,Zeny-4000;
+ warp "glast_01.gat",370,305;
+ end;
+
+L_Zeny:
+ mes "[Zondaman Employee]";
+ mes "You don't have enough money.";
+ mes "Please verify the amount of money you have.";
+M_END:
+ close2;
+ cutin "",255;
+ close;
+}