blob: 3b5cadc328e0b39ffac58fb1b093e1ebf1edb333 (
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
25
|
// TMW2 Script
// Author:
// Jesusalva
// Description:
// Monthly Sponsor Quest
// Variable:
// SQuest_Sponsor
// Quest ID: 1
012-2,46,81,0 script Saulc Sponsor NPC_HUMAN_MALE_CHIEF,{
mesn;
mesq lg("Yo, girl.", "Yo, man.");
next;
mesn;
mesq l("I sponsor the alliance and all I got was a NPC and access to this ugly room.");
next;
mesn;
mesq l("Well, I don't want to be an snob.");
close;
OnInit:
.sex = G_MALE;
.distance = 5;
end;
}
|