blob: 2c3e157af005e81babd228a23c30b4071f8b46cc (
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,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;
}
|