summaryrefslogtreecommitdiff
path: root/npc/events/custom/p_track/p_track_warpers.txt
diff options
context:
space:
mode:
authorsamuray22 <samuray22@54d463be-8e91-2dee-dedb-b68131a5f0ec>2008-02-05 17:54:03 +0000
committersamuray22 <samuray22@54d463be-8e91-2dee-dedb-b68131a5f0ec>2008-02-05 17:54:03 +0000
commit8508ca74ad6deea3f27cf14c2158a07059b4eb75 (patch)
treecb9589b37df7c5dad78597c507f16effa53ddcd4 /npc/events/custom/p_track/p_track_warpers.txt
parentdbc9cb6c9faff4c0c82b8e236ee6c8db99cb3e06 (diff)
downloadhercules-8508ca74ad6deea3f27cf14c2158a07059b4eb75.tar.gz
hercules-8508ca74ad6deea3f27cf14c2158a07059b4eb75.tar.bz2
hercules-8508ca74ad6deea3f27cf14c2158a07059b4eb75.tar.xz
hercules-8508ca74ad6deea3f27cf14c2158a07059b4eb75.zip
* Corrected a bad duplicate name in Kafra Bank (Custom). (bugeport:921)
* Corrected a lot of ";;" Typo errors. -Some of this are in the bugreport:919 * Corrected a Cutin Problem in Cooking Quest and a Delitem. (bugreport:911) * Corrected some typo error with "rouge". (bugreport:909) * Moved Custom Event folder to Custom Folder. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@12177 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, 0 insertions, 73 deletions
diff --git a/npc/events/custom/p_track/p_track_warpers.txt b/npc/events/custom/p_track/p_track_warpers.txt
deleted file mode 100644
index 730dd2b0f..000000000
--- a/npc/events/custom/p_track/p_track_warpers.txt
+++ /dev/null
@@ -1,73 +0,0 @@
-//===== eAthena Script =======================================
-//= Poring Track Warpers
-//===== By: ==================================================
-//= erKURITA
-//===== Current Version: =====================================
-//= 0.0000000000000002
-//===== Compatible With: =====================================
-//= eAthena 1.0
-//===== Description: =========================================
-//= NPC's for the City of Hugel.
-//===== Additional Comments: =================================
-//= 0.0000000000000002 Removed Duplicates [Silent]
-//============================================================
-//| Warp-in npcs
-hugel,58,72,5 script Yan#track1 86,{
-//callfunc "P_TrackEnt",npcname,map name;
-callfunc "P_TrackEnt","[Yan]","p_track01";
-end;
-}
-hugel,62,68,1 script Yalmire#track1 86,{
-//callfunc "P_TrackEnt",npcname,map name;
-callfunc "P_TrackEnt","[Yalmire]","p_track02";
-end;
-}
-
-//| Warp-out npcs
-
-p_track01,76,36,2 script Yan#track2 86,{
-end;
-}
-
-p_track02,76,36,2 script Yalmire#track2 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;
-}