blob: 18a9063ac45cdb0da114d93e1eb9030bbf0c52aa (
plain) (
tree)
|
|
// TMW2 Scripts.
//
// TMW-BR Original Authors:
// Programmer: Adson Renato
// Texts: Arkanjo
// Review: Jesusalva
//
// Authors:
// Jesusalva
// Description:
// Stowaway hidden in a ship's hole. Contrabandist. Trade potions, dyes,
// food, water, and money for a hat.
002-1,45,26,0 script Alige NPC_ALIGE,{
mesn;
mesq lg("Hey, dude! The guards are after me. I need your help, and I can reward you.");
next;
mesn;
mesq l("But... I need to solve a problem first. So please come back later.");
close;
OnInit:
.sex = G_MALE;
.distance = 2;
end;
OnTouch:
if (getareausers() <= 1)
setnpcdir "Alige", 2; // 6
close;
OnUnTouch:
if (getareausers() == 0)
setnpcdir "Alige", 4; // 8
close;
}
|