blob: 8697781d440794721bbfa30d5e18e69fc1286f81 (
plain) (
blame)
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
|
// TMW2 Script.
// (Former Evol script)
// Authors:
// Qwerty Dragon
// Reid
// Jesusalva
// Description:
// Elmo's second dialog.
002-4,27,27,0 script Elmo NPC_ELMO,{
if (LOCATION$ == "")
{
sailortalk;
}
mesn;
mes l("\"Hey, have you already got the money necessary for the travel?");
mes l("If you haven't, maybe there are a few things you can do besides selling items.\"");
next;
mes "";
// Barrel Quest
.@q=getq(CandorQuest_Barrel);
if (.@q < 4)
mes l("- I think you can help the storehouse for some quick cash.");
// Kids Quest
.@q=getq(CandorQuest_HAS);
if (.@q < 3)
mes l("- You can always play with kids. Not very profitable, though.");
close2;
goodbye;
end; // Just for good measure
OnInit:
.sex = G_MALE;
.distance = 5;
end;
}
|