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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
|
//================= Hercules Script =======================================
//= _ _ _
//= | | | | | |
//= | |_| | ___ _ __ ___ _ _| | ___ ___
//= | _ |/ _ \ '__/ __| | | | |/ _ \/ __|
//= | | | | __/ | | (__| |_| | | __/\__ \
//= \_| |_/\___|_| \___|\__,_|_|\___||___/
//================= License ===============================================
//= This file is part of Hercules.
//= http://herc.ws - http://github.com/HerculesWS/Hercules
//=
//= Copyright (C) 2012-2015 Hercules Dev Team
//= Copyright (C) Euphy
//= Copyright (C) Lemongrass
//= Copyright (C) Muad_Dib
//=
//= Hercules is free software: you can redistribute it and/or modify
//= it under the terms of the GNU General Public License as published by
//= the Free Software Foundation, either version 3 of the License, or
//= (at your option) any later version.
//=
//= This program is distributed in the hope that it will be useful,
//= but WITHOUT ANY WARRANTY; without even the implied warranty of
//= MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
//= GNU General Public License for more details.
//=
//= You should have received a copy of the GNU General Public License
//= along with this program. If not, see <http://www.gnu.org/licenses/>.
//=========================================================================
//= Dewata Guide
//================= Description ===========================================
//= Guide for the city of Dewata.
//================= Current Version =======================================
//= 1.1
//=========================================================================
dewata,202,106,4 script Dewata Guide#dewata01 4_M_DEWOLDWOMAN,{
mes "[Dewata Guide]";
mes "Welcome to ^8B4513Dewata Island^000000,";
mes "a place with dazzling waves and charming views it's a great place to relax.";
mes "If you have any questions, please ask me.";
next;
mes "[Dewata Guide]";
mes "Where can I guide you?";
F_Navi("[Dewata Guide]");
while (1) {
next;
switch(select("[ Kafra Employee ]", "[ Weapon Dealer ]", "[ Armor Dealer ]", "[ Tool Dealer ]", "[ Restauranteur ]", "[ Krakatau Gatekeeper ]", "[ Alberta Sailor ]", "Remove marks from Mini-Map", "Cancel")) {
case 1:
callsub L_Mark, "^0000FFKafra Employee^000000";
viewpoint 1,202,184,0,0x000FFF;
break;
case 2:
callsub L_Mark, F_Navi("Weapon Dealer","dewata,218,164","^008080");
viewpoint 1,218,163,1,0x008080;
break;
case 3:
callsub L_Mark, F_Navi("Armor Dealer","dewata,158,182","^008080");
viewpoint 1,158,182,2,0x008080;
break;
case 4:
callsub L_Mark, F_Navi("Tool Dealer","dewata,182,164","^FF1493");
viewpoint 1,182,164,3,0xFF1493;
break;
case 5:
callsub L_Mark, F_Navi("Restauranteur","dewata,146,109","^FF1493");
viewpoint 1,146,109,4,0xFF1493;
break;
case 6:
callsub L_Mark, F_Navi("Krakau Gatekeeper","dewata,235,56","^8A2BE2");
viewpoint 1,235,56,5,0x8A2BE2;
break;
case 7:
callsub L_Mark, F_Navi("Alberta Sailor","dewata,229,49","^00BFFF");
viewpoint 1,229,49,6,0x00BFFF;
break;
case 8:
mes "[Dewata Guide]";
mes "I'll remove all marks from your mini-map.";
mes "Is there anything else I can do for you?";
viewpoint 2,202,184,0,0xFFFFFF;
viewpoint 2,218,163,1,0xFFFFFF;
viewpoint 2,158,182,2,0xFFFFFF;
viewpoint 2,182,164,3,0xFFFFFF;
viewpoint 2,232,59,4,0xFFFFFF;
viewpoint 2,195,235,5,0xFFFFFF;
viewpoint 2,230,52,6,0xFFFFFF;
break;
case 9:
mes "[Dewata Guide]";
mes "Enjoy your trip!!";
close;
}
}
L_Mark:
mes "[Dewata Guide]";
mes "The "+getarg(0)+" is";
mes "marked on your mini-map.";
mes "Check your mini-map.";
mes "Is there anything else I can do for you?";
return;
}
dewata,197,184,4 duplicate(Dewata Guide#dewata01) Dewata Guide#dewata02 4_M_DEWOLDWOMAN
|