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
34
35
36
37
38
39
40
41
42
43
44
45
46
|
// TMW2 Script.
// Author:
// Jesusalva
003-1,63,141,0 script Itka NPC_F_SHOPKEEPER,{
mesn;
mesq lg("Hello, madam!", "Hello, sir!");
next;
mesq l("The inn north of me still haven't opened, which is a shame. I guess their cassino got too expensive.");
next;
mesq l("Anyway, I am selling Cherry Cakes to sponsor my studies. Please buy as many as you want!");
if (TUTORIAL) mesc l("Protip: Ducks and Giant Maggots also drops Cherry Cakes.");
next;
npcshopattach(.name$);
openshop;
closedialog;
close;
OnInit:
.@npcId = getnpcid(.name$);
setunitdata(.@npcId, UDT_HEADTOP, NPCEyes);
setunitdata(.@npcId, UDT_HEADMIDDLE, VneckSweater);
setunitdata(.@npcId, UDT_HEADBOTTOM, RaidTrousers);
setunitdata(.@npcId, UDT_WEAPON, LousyMoccasins); // I prefer 1801 but the short doesn't match
setunitdata(.@npcId, UDT_HAIRSTYLE, 17);
setunitdata(.@npcId, UDT_HAIRCOLOR, 19);
// NOTE: To limit selling items must change trader type to NST_MARKET
sellitem CherryCake, 200; // Unlimited cakes for 200 GP each
.sex = G_FEMALE;
.distance = 5;
end;
// Pay your taxes!
OnBuyItem:
debugmes("Purchase confirmed");
PurchaseTaxes();
end;
OnSellItem:
debugmes("Sale confirmed");
SaleTaxes();
end;
}
|