1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
//===== eAthena Script =======================================
//= Juperos Dungeon Warp Script
//===== By: ==================================================
//= Muad-Dib (1.0)
//===== Current Version: =====================================
//= 1.6
//===== Compatible With: =====================================
//= eAthena with independant npctimer support; RO Episode 8+
//===== Description: =========================================
//= Warp Points for Juperos Dungeon
//===== Additional Comments: =================================
//= 1.0 Converted by Dr.Evil [Lupus]
//= 1.1 More temp warps to Juperos by Justin84 [Lupus]
//= 1.2 Justin84's fixed elevator scripts
//= 1.3 Fixed getting stuck when player relogs in. [Lance]
//= 1.4 Added attachnpctimer to the initnpctimer calls. [Skotlex]
//= 1.5 Implemented a part of the Juperos quest [MasterOfMuppets]
//= 1.6 Removed area1 and area2 warps. These are event warps. [L0ne_W0lf]
//= Added static warps for gate -> area1/2/elevator.
//============================================================
yuno_fild07,207,175,0 warp jupwrp01 1,1,jupe_cave,143,52
jupe_cave,148,52,0 warp jupwrp02 1,1,yuno_fild07,212,175
jupe_cave,26,52,0 warp jupwrp03 1,1,juperos_01,53,247
juperos_01,50,250,0 warp jupwrp04 1,1,jupe_cave,29,52
juperos_01,99,92,1 script jupwrp05 -1,0,0,{
OnTouch:
mes "^666666[" + strcharinfo(0) + "]";
mes "^000000This light...";
mes "It feels like...";
mes "Its warmth is...";
mes "Wrapping all over me...";
next;
menu "Ah, it's so nice...",s_Nice,"No! This is wrong!",-;
mes "^666666[" + strcharinfo(0) + "]";
mes "^000000N-No! This is";
mes "wrong! Something";
mes "weird's happening!";
mes "I gotta get away!";
close2;
warp "juperos_01",96,91;
end;
s_Nice:
specialeffect 309;
mes "^666666[" + strcharinfo(0) + "]";
mes "^000000Ahhhh...";
mes "It feels like";
mes "I'm floating...";
close2;
warp "juperos_02",128,278;
end;
}
jupe_gate,28,145,0 warp gate#left1 45,2,4,jupe_area1",100,222
jupe_area1,103,222,0 warp gate#left2 45,2,4,jupe_gate",31,145
jupe_gate,71,145,0 warp gate#right1 45,2,4,jupe_area2",63,222
jupe_area2,60,222,0 warp gate#right2 45,2,4,jupe_gate",68,145
jupe_gate,49,55,0 warp gate#ele 45,4,2,jupe_ele_r,49,30
|