blob: 8a14deb9191684cee0b8602233df8c40c9f32d55 (
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
|
// Evol scripts.
// Author:
// Micksha
// toams
// Description:
// Barron, the bartender of the Rusty Pick.
008-2-2,43,28,0 script Barron#008-2-2 NPC_GENERAL_STORE,{
speech S_LAST_NEXT,
l("Hi!"),
l("I am the bartender here, can I provide you with some delicious beverage?"),
l("Or you can take seat and ask Melinda if you need something.");
switch (select(l("What beverages do you have?"),
l("I'll ask Melinda later")))
{
case 1:
closeclientdialog;
shop "#Invisible008-2-2";
close;
case 2:
speech S_FIRST_BLANK_LINE,
l("Make sure to tip her, it will brighten up her day.");
close;
}
OnInit:
.bodytype = BODYTYPE_3;
.distance = 3;
end;
}
|