blob: 2c3e157af005e81babd228a23c30b4071f8b46cc (
plain) (
tree)
|
|
// TMW2 Script
// Author:
// Jesusalva
// Description:
// Forgetful
027-1,94,115,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;
}
|