summaryrefslogtreecommitdiff
path: root/npc/warps/dungeons/kh_dun.txt
diff options
context:
space:
mode:
authorshennetsind <shennetsind@54d463be-8e91-2dee-dedb-b68131a5f0ec>2012-07-08 19:30:07 +0000
committershennetsind <shennetsind@54d463be-8e91-2dee-dedb-b68131a5f0ec>2012-07-08 19:30:07 +0000
commit31825ccc2dde034a218d9ad466dd721c40b5651d (patch)
tree961b976e45988f7f7158d33b3f11a18688f34b1f /npc/warps/dungeons/kh_dun.txt
parent22c75b070526de8b103032f5bf13504af81e0095 (diff)
downloadhercules-31825ccc2dde034a218d9ad466dd721c40b5651d.tar.gz
hercules-31825ccc2dde034a218d9ad466dd721c40b5651d.tar.bz2
hercules-31825ccc2dde034a218d9ad466dd721c40b5651d.tar.xz
hercules-31825ccc2dde034a218d9ad466dd721c40b5651d.zip
Okie ladies and gentleman if this commit breaks anything it's jman's and maki's fault, yes, blame them.
Fixing pre-re / re npc support, moving /config/ folder to src root so other servers may also make use of the #define renewal dir and other stuff. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16382 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/warps/dungeons/kh_dun.txt')
-rw-r--r--npc/warps/dungeons/kh_dun.txt38
1 files changed, 0 insertions, 38 deletions
diff --git a/npc/warps/dungeons/kh_dun.txt b/npc/warps/dungeons/kh_dun.txt
deleted file mode 100644
index c19e324ca..000000000
--- a/npc/warps/dungeons/kh_dun.txt
+++ /dev/null
@@ -1,38 +0,0 @@
-//===== rAthena Script =======================================
-//= Kiel Dungeon Warp Script
-//===== By: ==================================================
-//= Lost Kakashi
-//===== Current Version: =====================================
-//= 1.3
-//===== Compatible With: =====================================
-//= rAthena 1.0
-//===== Description: =========================================
-//= Warp Points for the Kiel Dungeon
-//===== Additional Comments: =================================
-//= 1.1 Added official Kiel Dungeon entrance [Playtester]
-//= 1.2 Changed warps because of Kiel quest [Playtester]
-//= 1.3 Added second floor exit. [L0ne_W0lf]
-//= Corrected coordinated for some of the other warps.
-//============================================================
-
-//= Kiel Dungeon =============================================
-kh_dun01,3,234,0 warp kh_dun_00 1,1,yuno_fild08,74,174
-
-//Factory Restricted Area Exit
-kh_dun01,232,226,0 warp kh_dun_01 1,1,kh_dun01,13,12
-
-//Factory side warps
-kh_dun01,63,7,0 warp kh_dun_02 1,1,kh_dun01,227,176
-kh_dun01,232,176,0 warp kh_dun_03 1,1,kh_dun01,63,12
-
-//Second Floor -> First floor Random warp
-kh_dun02,43,195,0 script kh_dun04 45,1,1,{
-OnTouch:
- if (rand(1,2) == 1) {
- warp "kh_dun01",41,206;
- }
- else {
- warp "kh_dun01",32,199;
- }
-
-}