1 | //===== eAthena Script ======================================= |
---|
2 | //= Kiel Dungeon Warp Script |
---|
3 | //===== By: ================================================== |
---|
4 | //= Lost Kakashi |
---|
5 | //===== Current Version: ===================================== |
---|
6 | //= 1.3 |
---|
7 | //===== Compatible With: ===================================== |
---|
8 | //= eAthena 1.0 |
---|
9 | //===== Description: ========================================= |
---|
10 | //= Warp Points for the Kiel Dungeon |
---|
11 | //===== Additional Comments: ================================= |
---|
12 | //= 1.1 Added official Kiel Dungeon entrance [Playtester] |
---|
13 | //= 1.2 Changed warps because of Kiel quest [Playtester] |
---|
14 | //= 1.3 Added second floor exit. [L0ne_W0lf] |
---|
15 | //= Corrected coordinated for some of the other warps. |
---|
16 | //============================================================ |
---|
17 | |
---|
18 | //= Kiel Dungeon ============================================= |
---|
19 | kh_dun01,3,234,0 warp kh_dun_00 1,1,yuno_fild08,74,174 |
---|
20 | |
---|
21 | //Factory Restricted Area Exit |
---|
22 | kh_dun01,232,226,0 warp kh_dun_01 1,1,kh_dun01,13,12 |
---|
23 | |
---|
24 | //Factory side warps |
---|
25 | kh_dun01,63,7,0 warp kh_dun_02 1,1,kh_dun01,227,176 |
---|
26 | kh_dun01,232,176,0 warp kh_dun_03 1,1,kh_dun01,63,12 |
---|
27 | |
---|
28 | //Second Floor -> First floor Random warp |
---|
29 | kh_dun02,43,195,0 script kh_dun04 45,1,1,{ |
---|
30 | OnTouch: |
---|
31 | if (rand(1,2) == 1) { |
---|
32 | warp "kh_dun01",41,206; |
---|
33 | } |
---|
34 | else { |
---|
35 | warp "kh_dun01",32,199; |
---|
36 | } |
---|
37 | |
---|
38 | } |
---|