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
|
019-1,102,100,0 script Time Traveler#19 NPC184,{
mes l("Would you like to time travel?");
menu
l("Yes!"), L_Warp,
l("No"), -;
closeclientdialog;
close;
L_Warp:
mes l("Hang tight!");
close2;
warp "030-1", 61, 29;
close;
}
030-1,64,33,0 script Time Traveler#30 NPC184,{
mes l("Welcome back!");
menu
l("What is this place?"), L_What,
l("How do I leave?"), L_Leave;
L_What:
mes l("This place used to be part of Kaizei a few years back.");
mes l("Unfortunately, a great landslide occured and it got completely engulfed by the sea.");
next;
mes l("Santa's workshop used to be located here, but after the incident they had to move further inland.");
mes l("Fortunately, they managed to salvage most of the equipment and nobody was injured.");
close;
L_Leave:
mes l("Walk North from here to exit the time dilation bubble.");
close;
}
|