summaryrefslogtreecommitdiff
path: root/npc/003-1/shop.txt
blob: ce74730eb497146e83161cb884cb07acdf24f353 (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
// TMW2 scripts.
// Author:
//    Saulc

003-1,108,110,0	trader	Shop#bazar1	NPC_NO_SPRITE,{

OnInit:
    tradertype(NST_MARKET);

    sellitem YellowCottonDye, -1, 3;
    sellitem SmallKnife, -1, 5;
    sellitem Arrow, -1, 30000;
    sellitem DesertHat, -1, 10;
    sellitem Bread, -1, 15;

    .sex = G_OTHER;
    .distance = 3;
    end;

OnClock0000:
    restoreshopitem YellowCottonDye, 3;
    restoreshopitem SmallKnife, 5;
    restoreshopitem Arrow, 30000;
    restoreshopitem DesertHat, 10;
    restoreshopitem Bread, 15;
}