summaryrefslogtreecommitdiff
path: root/npc/008-2-2/barron.txt
blob: c64efa409f8c8e6557ae9793e8e591f6c2415f0b (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
// Evol scripts.
// Author:
//    Micksha
// 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:
    .sex = G_MALE;
    .distance = 3;
    end;
}