blob: 9322272b4be0e673ea67fb0ecf32f3f583c3ad99 (
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
|
// The Mana World Script
// (C) Jesusalva, 2021
// Licensed under GPLv2 or later
006-2,81,36,0 script Reathe NPC179,{
shop .name$;
goodbye;
close;
OnInit:
tradertype(NST_ZENY);
sellitem ToySabre;
sellitem Cap;
sellitem HighPriestCrown;
sellitem MonsterSkullHelmet;
.distance = 5;
end;
}
006-2,30,35,0 script Ardra NPC179,{
shop .name$;
goodbye;
close;
OnInit:
tradertype(NST_ZENY);
sellitem CactusDrink;
sellitem CactusPotion;
sellitem BottleOfWater;
sellitem RoastedMaggot;
.distance = 5;
end;
}
|