// 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;

}