blob: 7ca42599cb00238ed36aec29474d0ec4b8cc5604 (
plain) (
tree)
|
|
// TMW2 Script
// Author:
// Jesusalva
// Description:
// Forgetful
027-1,49,102,0 script Enzo NPC_BLACKWIZARD,{
mesn l("%s, the Forgetful", .name$);
mesq l("What was I doing before...? I forgot!");
next;
ForgetfulNPC(.name$, CLASS_PHYSICAL);
close;
OnInit:
.sex = G_MALE;
.distance = 5;
end;
}
|