blob: d948917f7c2d129907a2646bdf12761d5fc2eeea (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
// TMW2 Script
// Author:
// Jesusalva
// Description:
// Forgetful
027-1,86,110,0 script Elza NPC_DARK_SORCERER_F,{
mesn l("%s, the Forgetful", .name$);
mesq l("What was I doing before...? I totally forgot!");
if (any(true, false))
mesc l("Have you seen my brother %s?", any("Enzo", "Ezra"));
next;
ForgetfulNPC(.name$, CLASS_SCHOLARSHIP);
close;
OnInit:
.sex = G_FEMALE;
.distance = 5;
end;
}
|