summaryrefslogtreecommitdiff
path: root/npc/024-9/barkeeper.txt
blob: 2d9f09122b24625ce5e7337e63e673152df96f28 (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
// TMW-2 Script
// Author:
//    Jesusalva
// Description:
//    Sells beer

// Temporary Sprite
024-9,39,31,0	script	Bar Jobs	NPC_DWARF_TRADER,{
    hello;
    shop .name$;
    close;

OnInit:
    tradertype(NST_MARKET);

    sellitem DwarvenSake, 1100, 5;
    sellitem Beer, 300, 20;
    if ($ARKIM_ST >= 4000)
        sellitem ClothoLiquor, -1, (($ARKIM_ST-4000)/500)+1;

    .sex = G_MALE;
    .distance = 5;
    end;

OnClock2358:
    restoreshopitem DwarvenSake, 1100, 5;
    restoreshopitem Beer, 300, 20;
    if ($ARKIM_ST >= 4000)
        restoreshopitem ClothoLiquor, (($ARKIM_ST-4000)/500)+1;
    end;

}