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
|
001-1,103,99,0 script Ekinu NPC104,{
mes "[Ekinu the Town Guard]";
mes "\"What a disaster... I can't believe that we managed to rebuild the town so quickly.\"";
next;
menu "Can you give me any tips?", L_Tip,
"Do you have any information?", L_Info,
"What disaster?", L_disaster;
L_Tip:
@temp = rand(7);
if(@temp == 1) goto L_1;
if(@temp == 2) goto L_2;
if(@temp == 3) goto L_3;
if(@temp == 4) goto L_4;
if(@temp == 5) goto L_5;
if(@temp == 6) goto L_6;
goto L_0;
L_1:
mes "[Ekinu the Town Guard]";
mes "\"Try to carry spare food when on quests or in dungeons – they will come in handy. I always take beer, but don't tell the Sergeant...\"";
goto L_close;
L_2:
mes "[Ekinu the Town Guard]";
mes "\"If you ever get lost, check your map to get your bearings and figure out where you need to go.\"";
goto L_close;
L_3:
mes "[Ekinu the Town Guard]";
mes "\"When in a dungeon, monsters are more aggressive – and often more powerful – than if they were outside.\"";
goto L_close;
L_4:
mes "[Ekinu the Town Guard]";
mes "\"When gambling in casinos, make sure to not bet too much or you might become broke.\"";
goto L_close;
L_5:
mes "[Ekinu the Town Guard]";
mes "\"Never underestimate your enemy.\"";
goto L_close;
L_6:
mes "[Ekinu the Town Guard]";
mes "\"When fighting more than one enemy, try to focus on one at a time.\"";
goto L_close;
L_0:
mes "[Ekinu the Town Guard]";
mes "\"Let me think of something... Oh! Do NOT attack the red or black scorpions unless you're sure you can kill it!\"";
goto L_close;
L_Info:
mes "[Ekinu the Town Guard]";
mes "\"Everyone seems to want information... You won't get it – at least not here. I'm not even sure what you mean, to be honest.\"";
goto L_close;
L_disaster:
mes "[Ekinu the Town Guard]";
mes "\"What do you mean, 'what disaster?' Weren't you there? That huge volcano ex...rusion... – whatever they call it – and then the earthquake!\"";
next;
mes "[Ekinu the Town Guard]";
mes "\"Half the town was reduced to rubble! Somehow, no one was seriously injured, so I guess we were lucky...\"";
next;
mes "[Ekinu the Town Guard]";
mes "\"Well, the mayor rebuilt everything quickly, but I still have no idea where he got all the GP from...\"";
goto L_close;
L_close:
@temp = 0;
close;
}
001-1,107,42,0 script Ryan NPC104,{
if (getskilllv(SKILL_MAGIC)) goto L_message;
mes "[Ryan the Town Guard]";
mes "Zzzz... Zzzz...";
next;
mes "[Ryan the Town Guard]";
mes "\"Hmmmmmmh...?";
mes "Oh, what? I wasn't sleeping! I was just resting my eyes!\"";
close;
L_message:
mes "[Ryan the Town Guard]";
mes "\" Watch out for Black Scorpions. They are extremely dangerous!\"";
next;
mes "\"Whenever one approaches the town gate, Ekinu has me run around shouting '" + $@SPELL_AGGRAVATE$ + ".' Somehow, this distracts it so Ekinu can kill it.\"";
close;
}
|