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
|
// The Mana World Script
// (C) Jesusalva, 2021
// Licensed under GPLv2 or later
009-2,65,49,0 script Barkeeper NPC112,{
shop .name$;
goodbye;
close;
OnInit:
tradertype(NST_ZENY);
sellitem Beer;
sellitem Cake;
sellitem Steak;
.distance = 5;
end;
}
009-2,97,24,0 script Donald NPC120,{
shop .name$;
goodbye;
close;
OnInit:
tradertype(NST_ZENY);
sellitem SlingBullet;
sellitem Arrow, 2;
sellitem IronArrow;
sellitem Bow;
sellitem ShortBow, 4000;
.distance = 5;
end;
}
009-2,123,22,0 script Potions#_M NPC400,{
shop .name$;
goodbye;
close;
OnInit:
tradertype(NST_ZENY);
sellitem CactusDrink;
sellitem CactusPotion;
sellitem IronPotion;
sellitem ConcentrationPotion;
sellitem SlowPoisonPotion;
.distance = 5;
end;
}
009-2,32,99,0 script General Store#hurnscald NPC112,{
shop .name$;
goodbye;
close;
OnInit:
tradertype(NST_ZENY);
sellitem Milk;
sellitem BottleOfWater;
sellitem CottonShirt;
sellitem CottonShorts;
sellitem Boots;
sellitem SerfHat;
sellitem CottonHeadband;
sellitem CottonGloves;
.distance = 5;
end;
}
009-2,50,48,0 script Receptionist#inn NPC108,{
@npcname$ = "Receptionist";
@Cost = 100;
callfunc "Inn";
end;
}
|