root/npc/guides/guides_cmd.txt @ 1

Revision 1, 4.4 kB (checked in by jinshiro, 17 years ago)
Line 
1//===== eAthena Script =======================================
2//= Comodo Guides
3//===== By: ==================================================
4//= kobra_k88; L0ne_W0lf
5//===== Current Version: =====================================
6//= 1.5
7//===== Compatible With: =====================================
8//= eAthena  SVN
9//===== Description: =========================================
10//= [Aegis Conversion]
11//= Guides for the City of Comodo
12//===== Additional Comments: =================================
13//= Fully working v1.1 Now using duplicate command.
14//= 1.2 Optimized, updated common guide names [Lupus]
15//= 1.3 Updated the guide according to how it is on iRO, thanks
16//=     to Muad_Dib [MasterOfMuppets]
17//= 1.4 Removed 3 guides, and converted to use functions.
18//= 1.5 Rescripted to Aegis 10.3 standards. [L0ne_W0lf]
19//============================================================
20
21comodo,322,178,4        script  Comodo Guide#cmd::CmdGuide      700,{
22        callfunc "F_CmdGuide","Native Kokomo";
23}
24
25comodo,176,350,4        script  Comodo Guide#2cmd       700,{
26        callfunc "F_CmdGuide","Native Nutcoco";
27}
28
29comodo,37,219,4 script  Guide#2cmd      700,{
30        callfunc "F_CmdGuide","Native Papaya";
31}
32
33function        script  F_CmdGuide      {
34        mes "["+getarg(0)+"]";
35        mes "Welcome to Comodo, the";
36        mes "city of dreams and fantasy,";
37        mes "where the nightlife never ends!";
38        mes "I know this area really well,";
39        mes "so let me know if you need";
40        mes "directions anywhere here.";
41        next;
42        switch(select("Casino:Hula Dance Stage ^3355FF(Dancer Job Change)^000000:Weapon and Armor Shop:Tool Shop:Tourist Shop:Kafra Co. Western Branch:Chief's House:Pub:Campground:End Conversation")) {
43        case 1:
44                viewpoint 1,140,98,0,0xFF6633;
45                mes "Please refer to the cross mark,";
46                mes "^FF6633+^000000, on your Mini-Map to find the";
47                mes "Casino, a haven for rest for";
48                mes "weary travlers and the heart";
49                mes "of Comodo's nightlife.";
50                close;
51        case 2:
52                viewpoint 1,188,168,1,0x0000FF;
53                mes "Please refer to the cross mark,";
54                mes "^0000FF+^000000, on your Mini-Map to find the";
55                mes "Hula Dance Stage, the place";
56                mes "where female Archers can";
57                mes "change jobs to Dancers.";
58                close;
59        case 3:
60                viewpoint 1,266,70,2,0x00FFFF;
61                mes "Please refer to the cross mark,";
62                mes "^00FFFF+^000000, on your Mini-Map to find the";
63                mes "Weapon and Armor shop. Be";
64                mes "sure to check that shop for";
65                mes "any special items that are";
66                mes "unique to Comodo!";
67                close;
68        case 4:
69                viewpoint 1,86,128,3,0x515151;
70                mes "Please refer to the cross mark,";
71                mes "^515151+^000000, on your Mini-Map to find the";
72                mes "Tool Shop. If you've never been";
73                mes "there before, then I suggest";
74                mes "you check it out and stock up";
75                mes "on tools you might need later.";
76                close;
77        case 5:
78                viewpoint 1,298,124,4,0x3355FF;
79                mes "Please refer to the cross mark,";
80                mes "^3355FF+^000000, on your Mini-Map to find the";
81                mes "Tourist Shop where you can ";
82                mes "buy gifts that can only be found^FFFFFF ^000000 in the Comodo region~";
83                close;
84        case 6:
85                viewpoint 1,136,202,5,0xFF5555;
86                mes "Please refer to the cross mark,";
87                mes "^FF5555+^000000, on your Mini-Map to find the";
88                mes "Western branch of the Kafra";
89                mes "Corporation. They offer some";
90                mes "pretty important services that^FFFFFF ^000000 you may want to check out later.";
91                close;
92        case 7:
93                viewpoint 1,114,294,5,0xFF5555;
94                mes "Please refer to the cross mark,";
95                mes "^FF5555+^000000, on your Mini-Map to find the";
96                mes "Chief's House. You're welcome";
97                mes "to visit him, and he's usually";
98                mes "happy to have visitors.";
99                close;
100        case 8:
101                viewpoint 1,166,298,5,0xFF5555;
102                mes "Please refer to the cross mark,";
103                mes "^FF5555+^000000, on your Mini-Map to find the";
104                mes "Pub. There, you can meet other";
105                mes "tourists, relax, and socialize";
106                mes "in an enjoyable environment~";
107                close;
108        case 9:
109                viewpoint 1,210,308,5,0xFF5555;
110                mes "Please refer to the cross mark,";
111                mes "^FF5555+^000000, on your Mini-Map to find the";
112                mes "Campground. Gather with your";
113                mes "family and friends, and enjoy";
114                mes "the special barbeque of";
115                mes "Comodo's camping grounds~";
116                close;
117        case 10:
118                mes "["+getarg(0)+"]";
119                mes "Actually, it always looks";
120                mes "like nighttime in Comodo";
121                mes "because it's built in a huge";
122                mes "cave. We don't get any sunlight";
123                mes "here, but the darkness here is";
124                mes "more exciting than gloomy~";
125                close;
126        }
127}
Note: See TracBrowser for help on using the browser.