root/npc/warps/cities/nameless.txt

Revision 1, 3.6 kB (checked in by jinshiro, 17 years ago)
Line 
1//===== eAthena Script =======================================
2//= Nameless Island Warp Script
3//===== By: ==================================================
4//= $ephiroth
5//===== Current Version: =====================================
6//= 1.2
7//===== Compatible With: =====================================
8//= Any Athena Version
9//===== Description: =========================================
10//= Warp Points for Nameless Island
11//===== Additional Comments: =================================
12//= 1.0 Initial version [$ephiroth]
13//= 1.1 Added SinSloth's warper to this file [Playtester]
14//= 1.2 Corrected NPC names to fall within proper restrictions. [L0ne_W0lf]
15//============================================================
16
17nameless_n,157,184,0    warp    namelesswarp0401        1,1,abbey01,51,12
18nameless_i,168,257,0    warp    namelesswarp1001        1,1,nameless_in,12,43
19nameless_in,12,40,0     warp    namelesswarp1002        1,1,nameless_i,168,254
20nameless_i,252,130,0    warp    namelesswarp1003        1,1,nameless_in,26,128
21nameless_in,23,128,0    warp    namelesswarp1004        1,1,nameless_i,249,130
22nameless_i,79,256,0     warp    namelesswarp1005        1,1,nameless_in,12,172
23nameless_in,12,169,0    warp    namelesswarp1006        1,1,nameless_i,82,256
24nameless_i,78,94,0      warp    namelesswarp1007        1,1,nameless_in,96,180
25nameless_in,96,177,0    warp    namelesswarp1008        1,1,nameless_i,81,96
26
27ve_fild07,128,131,3     script  Desert Coast Man#na     943,{
28
29        mes "[Desert Coast Sailor]";
30        mes "Hey you! Yes, you!";
31        mes "Have you ever heard";
32        mes "about Nameless Island?...";
33        next;
34        mes "[Desert Coast Sailor]";
35        mes "Shh! Not that loudly!";
36        mes "Rumors say there is an";
37        mes "old monastery... you might";
38        mes "want to take a look at it...";
39        next;
40        mes "[Desert Coast Sailor]";
41        mes "But you know... It is kind";
42        mes "of forbidden to talk about";
43        mes "this place... Sure, going";
44        mes "there is somewhat impossible.";
45        mes "I can lead you there.";
46        next;
47        mes "[Desert Coast Sailor]";
48        mes "10.000 zenys.";
49        mes "And I'll make sure nobody";
50        mes "knows you went there. It looks";
51        mes "like a fair trade, doesn't it?";
52        next;
53        switch( select( "Sure.","Forget it." ) )
54        {
55                case 1:
56                        if(Zeny < 10000)
57                        {
58                                mes "[Desert Coast Sailor]";
59                                mes "Did you really think I would";
60                                mes "take that much risk for free?";
61                                mes "No money, no travel, understood?";
62                                close;
63                        }
64                        mes "[Desert Coast Sailor]";
65                        mes "Haha! I knew you truly were";
66                        mes "an adventurer! Let's go!";
67                        mes "I hope you didn't forget";
68                        mes "anything...";
69                        set Zeny,Zeny-10000;
70                        close2;
71                        warp "nameless_n",254,231;
72                        end;
73                       
74                case 2:
75                        mes "[Desert Coast Sailor]";
76                        mes "Fine, as you wish.";
77                        mes "Remember, don't talk to";
78                        mes "anyone about that place,";
79                        mes "or you might have problems...";
80                        close;
81        }
82}
83
84nameless_n,251,236,3    script  Desert Coast Man        943,{
85
86        mes "[Desert Coast Sailor]";
87        mes "It's not like I care";
88        mes "about you... But please,";
89        mes "be careful, I heard some";
90        mes "screams from the center of";
91        mes "the island...";
92        next;
93        mes "[Desert Coast Sailor]";
94        mes "I'm going back to Veins,";
95        mes "I don't like that place";
96        mes "at all. Do you want to return";
97        mes "with me?";
98        next;
99        switch( select( "Take me far away.","I'll be fine by myself." ) )
100        {
101                case 1:
102                        mes "[Desert Coast Sailor]";
103                        mes "Okay. I see you are an";
104                        mes "adventurer, but at least";
105                        mes "you're a wise one.";
106                        mes "I don't want to stay here.";
107                        close2;
108                        warp "ve_fild07",127,135;
109                        end;
110                       
111                case 2:
112                        mes "[Desert Coast Sailor]";
113                        mes "That's your problem now.";
114                        mes "I don't want to be part";
115                        mes "of this expedition.";
116                        mes "Take care.";
117                        close;
118        }
119}
Note: See TracBrowser for help on using the browser.