blob: 80119d6fbe1bd9bd8204415749a33f6a40e63460 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// Evol scripts.
// Author:
// Micksha
// Description:
// Ishi, former trade-in for monster points.
// THIS IS A PLACEHOLDER!
012-1,53,114,0 script Ishi NPC_ISHI,{
speech
l("Welcome. I am Ishi, from the Monster Hunting Association."),
l("I only follow Aidan around, so make your questions to him instead.");
next;
mesn;
mesc l("Ishi seems to be very pensative of something, it is better if we don't disturb her.");
close;
OnInit:
.sex = G_FEMALE;
.distance = 4;
end;
}
|