blob: 3879ca7ec7c53df807edf54034f0666bd54180a2 (
plain) (
tree)
|
|
// TMW2 Script
// Author:
// Jesusalva
// Description:
// Forgetful
027-1,131,100,0 script Ezra NPC_BLACKWIZARD,{
mesn l("%s, the Forgetful", .name$);
mesq l("What was I doing before...? I forgot!");
next;
ForgetfulNPC(.name$, CLASS_TRICKS);
mesn l("%s, the Forgetful", .name$);
mesq l("Do you know where my brother Enzo is? I forgot that too!");
close;
OnInit:
.sex = G_MALE;
.distance = 5;
end;
}
|