summaryrefslogtreecommitdiff
path: root/npc/009-2-7/umfrey.txt
blob: 5463f7e29567debefb9fe14b55aea8b14206ad64 (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
// Evol scripts.
// Author:
//    Micksha
// Description:
//    Umfrey is the general shopkeeper of Asphodel Moors
// THIS IS A PLACEHOLDER!

009-2-7,44,30,0	script	Umfrey	NPC_UMFREY,{
    closeclientdialog;
    shop .name$;
    close;

OnInit:
    .distance = 4;
    tradertype(NST_MARKET);

    sellitem TrainingArrow, -1, 20000;
    sellitem DeathPotion, -1, 1;
    end;

OnClock0009:
    restoreshopitem TrainingArrow, 20000;
    restoreshopitem DeathPotion, 1;
    end;
}