summaryrefslogtreecommitdiff
path: root/npc/events/custom/p_track/p_track_warpers.txt
diff options
context:
space:
mode:
authoreaac <eaac@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-04-13 01:35:50 +0000
committereaac <eaac@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-04-13 01:35:50 +0000
commit9adc8abaa6ce3d5535b419fc2588a54d9755fe82 (patch)
tree63d0734e748d8f08d533b39e4d8b5525feb3fc00 /npc/events/custom/p_track/p_track_warpers.txt
parent3cf706a09c00cf3ceee18a1a26446e3edafdbbec (diff)
downloadhercules-9adc8abaa6ce3d5535b419fc2588a54d9755fe82.tar.gz
hercules-9adc8abaa6ce3d5535b419fc2588a54d9755fe82.tar.bz2
hercules-9adc8abaa6ce3d5535b419fc2588a54d9755fe82.tar.xz
hercules-9adc8abaa6ce3d5535b419fc2588a54d9755fe82.zip
- Added up the locations but temporal names of Poring track npcs. Will be worked
on over time. [erKURITA] - Fitted the many lines into 1 or 2, and corrected some typos on most of the npc\guides. Visual update to the guards, for short. [erKURITA] - Added some info to the docs.[erKURITA] - Added "case" npcs of lighthalzen, they're the first on npc/cities/? Mostly guards. [erKURITA] git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@6025 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/events/custom/p_track/p_track_warpers.txt')
-rw-r--r--npc/events/custom/p_track/p_track_warpers.txt73
1 files changed, 73 insertions, 0 deletions
diff --git a/npc/events/custom/p_track/p_track_warpers.txt b/npc/events/custom/p_track/p_track_warpers.txt
new file mode 100644
index 000000000..4209f2cac
--- /dev/null
+++ b/npc/events/custom/p_track/p_track_warpers.txt
@@ -0,0 +1,73 @@
+//===== eAthena Script =======================================
+//= Poring Track Warpers
+//===== By: ==================================================
+//= erKURITA
+//===== Current Version: =====================================
+//= 0.0000000000000001
+//===== Compatible With: =====================================
+//= eAthena 1.0
+//===== Description: =========================================
+//= NPC's for the City of Hugel.
+//===== Additional Comments: =================================
+//=
+//============================================================
+//| Warp-in npcs
+hugel.gat,58,72,5 script Yan 86,{
+//callfunc "P_TrackEnt",npcname,map name;
+callfunc "P_TrackEnt","[Yan]","p_track01.gat";
+end;
+}
+hugel.gat,62,68,1 script Yalmire 86,{
+//callfunc "P_TrackEnt",npcname,map name;
+callfunc "P_TrackEnt","[Yalmire]","p_track02.gat";
+end;
+}
+
+//| Warp-out npcs
+
+p_track01.gat,76,36,2 script Yan 86,{
+end;
+}
+
+p_track02.gat,76,36,2 script Yalmire 86,{
+end;
+}
+
+function script P_TrackEnt {
+
+mes getarg(0);
+mes "Hi "+strcharinfo(0)+", Welcome to the Poring Track!";
+menu "Information",-,"I want to try it",L_Try,"Not today thanks",L_End;
+ next;
+ mes getarg(0);
+ mes "Bla blah, so fun";
+ close;
+ L_Try:
+ next;
+ mes getarg(0);
+ mes "Ok, the entrance fee is 500z, would you like to go in?";
+ menu "Yes Please",-,"No Thanks",L_End2;
+ if (Zeny < 500) {
+ next;
+ mes getarg(0);
+ mes "Sorry but you ain't got 500z, you can't enter";
+ close;
+ } else
+ next;
+ mes getarg(0);
+ mes "Here we go!";
+ close2;
+ set Zeny,Zeny-500;
+ warp getarg(1),75,41;
+ end;
+ L_End2:
+ next;
+ mes getarg(0);
+ mes "Oh well, you miss it";
+ close;
+ L_End:
+ next;
+ mes getarg(0);
+ mes "Ok, see you later!";
+ close;
+}