blob: 1197386ccb9e3106c001d01856d60ac62213e5cf (
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
24
|
// Evol scripts.
// Author:
// Reid
// Description:
// Aemil
001-2-6,31,44,0 script Dolfina NPC_ELVEN_FEMALE_READING,{
mesn;
mesq l("Stop disturbing me, I already re-read that part twice because of you!");
if (@terry_goal$ == "Dolfina's") {
next;
mesc l("After some brief conversation, she understands what Terry wants and give you one of the books she has finished reading.");
@terry_section$ = "Dolfina's";
}
goto L_Close;
L_Close:
close;
OnInit:
.distance = 2;
end;
}
|