blob: 36d7df474396e24239bf3fcb6e8ee005fd6f0e6d (
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
// The Mana World Script
// (C) Jesusalva, 2021
// Licensed under GPLv2 or later
001-1,106,105,0 script Neko NPC101,{
shop .name$;
goodbye;
close;
OnInit:
tradertype(NST_ZENY);
sellitem TonoriDelight;
sellitem CactusDrink;
sellitem CactusPotion;
sellitem RoastedMaggot;
sellitem Beer;
sellitem ChickenLeg;
.distance = 5;
end;
}
001-1,111,108,0 script Inar NPC108,{
shop .name$;
goodbye;
close;
OnInit:
tradertype(NST_ZENY);
sellitem CottonShirt;
sellitem SerfHat;
sellitem CottonShorts;
sellitem CottonBoots;
sellitem DesertShirt;
sellitem CottonHeadband;
sellitem DesertHat;
.distance = 5;
end;
}
001-1,48,79,0 script Well NPC400,{
callfunc "WaterBottle";
end;
}
|