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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
026-2,30,56,0 script Chef#graveyard NPC300,{
shop .name$;
goodbye;
close;
OnInit:
tradertype(NST_ZENY);
sellitem ZombieNachos;
sellitem LadyFingers;
sellitem JellAhh;
sellitem Snapple;
.distance = 5;
end;
}
026-2,38,30,0 script Estrilda NPC301,{
shop .name$;
goodbye;
close;
OnInit:
tradertype(NST_ZENY);
sellitem BeetleJuice;
sellitem GutBuster;
sellitem BloodWine;
.distance = 5;
end;
}
026-2,31,119,0 script Leofwin NPC304,{
shop .name$;
goodbye;
close;
OnInit:
tradertype(NST_ZENY);
sellitem CactusDrink;
sellitem CactusPotion;
sellitem BugLeg;
sellitem SmallMushroom;
sellitem IronPotion;
sellitem ConcentrationPotion;
sellitem HardSpike;
sellitem DarkCrystal;
sellitem Root;
sellitem WispPowder;
sellitem SpectrePowder;
sellitem PoltergeistPowder;
.distance = 5;
end;
}
026-2,22,120,0 script Umfrey NPC302,{
shop .name$;
goodbye;
close;
OnInit:
tradertype(NST_ZENY);
sellitem BoneArrows;
sellitem ShockSweet;
.distance = 5;
end;
}
026-2,40,24,0 script Edwin NPC309,{
@npcname$ = "Edwin";
mes "[" + @npcname$ + "]";
mes "\"This place is always busy.\"";
next;
mes "\"Be careful about bumping into the patrons, they might not take it kindly if you spill their drink.\"";
close;
}
026-2,75,23,0 script Barbara Grey NPC320,{
@npcname$ = "Barbara Grey";
@Cost = 1000;
mes "[" + @npcname$ + "]";
mes "\"Don't be shy, darling.";
mes "\"Come on in and have a nice long... long slumber...";
next;
callfunc "Inn";
close;
}
026-2,25,120,0 script J.P. Morbid NPC321,{
@npcname$ = "J.P. Morbid";
callfunc "Banker";
close;
}
|