summaryrefslogtreecommitdiff
path: root/npc/000-1/shop.txt
blob: be588e9939095a34ecf35b29a77cb7925e2424cf (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.
// Authors:
//    4144
//    Reid
// Description:
//    Fexil's shop bag.

000-1,84,98,0	trader	Bag#000-1	NPC_SHOP_BAG,{

OnInit:
    tradertype(NST_MARKET);

    sellitem PiouLegs, -1, 15;
    sellitem Bread, -1, 15;
    sellitem Croconut, -1, 50;
    sellitem Aquada, -1, 50;
    sellitem Armbands, -1, 20;
    sellitem LousyMoccasins, -1, 20;
    sellitem PiouSlayer, -1, 15;

    .distance = 3;
    end;

OnClock0000:
    restoreshopitem PiouLegs, 15;
    restoreshopitem Bread, 15;
    restoreshopitem Croconut, 50;
    restoreshopitem Aquada, 50;
    restoreshopitem Armbands, 20;
    restoreshopitem LousyMoccasins, 20;
    restoreshopitem PiouSlayer, 15;
}