blob: 7ca42599cb00238ed36aec29474d0ec4b8cc5604 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// 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;
}
|