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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
// TMW2/LoF scripts.
// Authors:
// Jesusalva
// Description:
// Random Sellers
017-1,158,184,0 script Billy NPC_M_SHOPKEEPER,{
shop .name$;
close;
OnInit:
.@npcId = getnpcid(.name$);
setunitdata(.@npcId, UDT_HEADTOP, NPCEyes);
setunitdata(.@npcId, UDT_HEADMIDDLE, any(ShortTankTop, CandorShirt, Chainmail));
setunitdata(.@npcId, UDT_HEADBOTTOM, RaidTrousers);
setunitdata(.@npcId, UDT_WEAPON, LousyMoccasins); // Boots
setunitdata(.@npcId, UDT_HAIRSTYLE, 10);
setunitdata(.@npcId, UDT_HAIRCOLOR, 9);
.sex = G_MALE;
.distance = 4;
tradertype(NST_MARKET);
sellitem YellowDye, -1, 1;
sellitem CottonCloth, -1, 3;
end;
OnClock1250:
OnClock0112:
restoreshopitem YellowDye, -1, 1;
restoreshopitem CottonCloth, -1, 3;
end;
}
// Anagram for 'Demure'.
// Sells wands (therefore, not demure, who plays speed-melee, unless she have a secret shop quest)
017-1,135,185,0 script Drueme NPC_F_SHOPKEEPER,{
shop .name$;
close;
OnInit:
.@npcId = getnpcid(.name$);
setunitdata(.@npcId, UDT_HEADTOP, NPCEyes);
setunitdata(.@npcId, UDT_HEADMIDDLE, any(ShortTankTop, CandorShirt, Chainmail));
setunitdata(.@npcId, UDT_HEADBOTTOM, RaidTrousers);
setunitdata(.@npcId, UDT_WEAPON, LousyMoccasins); // Boots
setunitdata(.@npcId, UDT_HAIRSTYLE, 10);
setunitdata(.@npcId, UDT_HAIRCOLOR, 9);
.sex = G_FEMALE;
.distance = 4;
tradertype(NST_MARKET);
sellitem TrainingWand, -1, 3;
sellitem NoviceWand, -1, 2;
sellitem ApprenticeWand, -1, 1;
end;
OnSun0346:
restoreshopitem TrainingWand, -1, 3;
restoreshopitem NoviceWand, -1, 2;
restoreshopitem ApprenticeWand, -1, 1;
end;
}
|