blob: 183d33c3a7b28d1433e17bda3a5f10ba76658009 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// The Mana World scripts.
// Author:
// Micksha
// Description:
// Banu, the old lady.
// THIS IS A PLACEHOLDER!
008-1,244,88,0 script Banu NPC_OLD_LADY,{
speech
l("Hello."),
l("You don't have a scythe, by chance? I am too old to mew this field all alone."),
l("I asked Hinnak, but he wants at least a beer in exchange for his scythe."),
lg("But I hate alcohol, so thats not an option for me.");
close;
OnInit:
.bodytype = BODYTYPE_2;
.distance = 4;
end;
}
|