summaryrefslogtreecommitdiff
path: root/npc/027-1/ezra.txt
blob: 3879ca7ec7c53df807edf54034f0666bd54180a2 (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,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;

}