blob: b16a42cd6c7bf4315e249bdea472c0db6b73c369 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
// TMW2 Script
// Author:
// Jesusalva
// Description:
// Forgetful
027-1,135,25,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;
}
|