blob: 0f498fcc8766cda63cfc758a5620a039cfe07884 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// TMW2 scripts.
// Authors:
// Jesusalva
// Description:
// Leatherwork: Cowboy Hats and Jeans Chaps. Mother of Nowhere Family.
004-3,85,22,0 script Melune NPC_INDIGENOUS_WIFE,{
mesn;
mesq l("Greetings, traveler. My name is Melune, and I'm Darug's wife.");
next;
mesn;
mesq l("My children and grandchildren have all moved to the Land of Fire, so the amount of leatherwork I can offer you is limited.");
close;
OnInit:
.distance = 4;
.sex = G_FEMALE;
end;
}
|