blob: 36d7df474396e24239bf3fcb6e8ee005fd6f0e6d (
plain) (
tree)
|
|
// 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;
}
|