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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
//===== eAthena Script =======================================
//= Brasilis Town
//===== By: ==================================================
//= L0ne_W0lf
//===== Current Version: =====================================
//= 1.1
//===== Compatible With: =====================================
//= eAthena SVN
//===== Description: =========================================
//= [Aegis Conversion]
//= Brasilis Town Script
//===== Additional Comments: =================================
//= 1.0 First version. Transportation and Basic NPCs.
//= 1.1 Fixed Zeny not being removed for payment. [Kisuka]
//============================================================
alberta,247,115,3 script Brute Sailor#bra2 100,{
mes "[Brute Sailor]";
mes "Hey, have you heard of the place called Brasilis?";
mes "It's a place that's as hot as the Morroc desert, and as dense as the forests of Payon.";
next;
mes "[Brute Sailor]";
mes "I have a map to get there, if you want I can take you to Brasilis.";
mes "It will only cost you 10,000 zeny. What do you say?";
next;
switch(select("Let's go to Brasilis!:Cancel.")) {
case 1:
if (Zeny > 9999 ) {
mes "[Brute Sailor]";
mes "Great! Let's Go!";
close2;
set Zeny,Zeny-10000;
warp "brasilis",314,60;
end;
}
else {
mes "[Brute Sailor]";
mes "I'm sorry but you don't have";
mes "enough zeny now";
mes "You need 10,000 zeny";
mes "to go to Brasilis";
mes "Thank you.";
close;
}
case 2:
mes "[Brute Sailor]";
mes "Let me know if you change your mind.";
close;
}
}
brasilis,316,57,3 script Brute Sailor#bra1 100,{
mes "[Brute Sailor]";
mes "My ship will be heading back to Alberta soon, would you like to go back?";
next;
switch(select("Return to Alberta.:Cancel.")) {
case 1:
mes "[Brute Sailor]";
mes "Alright, lets get going!";
close2;
warp "alberta",244,115;
end;
case 2:
mes "[Brute Sailor]";
mes "Let me know if you change your mind.";
close;
}
}
brasilis,278,137,3 script Bulletin Board#bra1 858,{
mes ":: Happy Toucan Inn ::";
close;
}
brasilis,244,248,1 script Bulletin Board#bra2 858,{
mes ":: Brasilis Market ::";
close;
}
brasilis,155,165,3 script Bulletin Board#bra3 858,{
mes ":: Brasilis Art Museum ::";
close;
}
brasilis,303,309,3 script Bulletin Board#bra4 858,{
mes ":: Jungle Cable ::";
mes " ";
mes "- Not recommended for the faint hearted! -";
close;
}
|