summaryrefslogtreecommitdiff
path: root/npc/002-1_Sandstorm/lieutenant_dausen.txt
blob: 65616a72dbb5065083cac508a3ea14955c2d72d8 (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
// Lieutenant in charge of monitoring the monster threat surrounding the city.

002-1.gat,54,27,0	script	Lieutenant Dausen	122,{

	if (TMW_Quest == 33) goto L_LD_Key;
	if (TMW_Quest == 19) goto L_LD_Miners;
	if (TMW_Quest == 18) goto L_LD_Orders;
	if (TMW_Quest == 17) goto L_LD_Nickos_Waits;
	if (TMW_Quest == 16) goto L_LD_Nickos;
	if (TMW_Quest == 15) goto L_LD_Waits;
	if (TMW_Quest == 14) goto L_LD_Woe_Is_Me;
	if (TMW_Quest == 13) goto L_LD_Drinks;
	if (TMW_Quest == 12) goto L_LD_Start;

	mes "[Lieutenant Dausen]";
	mes "\"Hello.  I am Lieutenant Dausen.  I monitor the monster threats surrounding the city to ensure the safety of its citizens.\"";
	close;

L_LD_Start:
	set TMW_Quest, 13;
	mes "[Lieutenant Dausen]";
	mes "\"Our here in the desert, it sure does get hot.  My men and I get thirsty rather quickly.  If you can get some cactus drinks, our favorite, we'd surely appreciate your effort.  About 10 will do.\"";
	close;

L_LD_Drinks:
	if (countitem ("CactusDrink") < 10) goto L_LD_NotEnough_Drink;
	getinventorylist;
	if (@inventorylist_count - (countitem("CactusDrink") == 10) > 99) goto L_LD_TooMany;
	set TMW_Quest, 14;
	delitem "CactusDrink", 10;
	getitem "Boots", 1;
	mes "[Lieutenant Dausen]";
	mes "\"Great!  This will help us make it through the hot day.  As a gift for your troubles, take these boots to keep your feet from burning on the sand.  Have a good day..\"";
	next;
	mes "Mumbles to himself and rubs his head.";
	next;
	mes "\"However, I have a problem.  I mixed up the orders to my men Nickos and Steven.  If someone would let them know they're going to have to hold their post for a while longer instead of taking a break, it would help me a great deal.  However, I can't leave my post.  Oh what to do, what to do..\"";
	menu
		"Oh, it wouldn't be a bother to me to help you out, since you helped me out.", L_LD_Help,
		"Thanks for the boots, gotta run.", L_LD_NoHelp;
	close;

L_LD_NotEnough_Drink:
	mes "[Lieutenant Dausen]";
	mes "\"Hi again.  My men and I sure are thirsty for our favorite drink, the cactus drink.  If we had about 10, it would help us out a great deal in this sandstorm.\"";
	close;

L_LD_TooMany:
	mes "[Lieutenant Dausen]";
	mes "\"Oh, it seems you have too many items for me to give you a reward.  Come back after you drop or sell some items.\"";
	close;

L_LD_Woe_Is_Me:
	mes "[Lieutenant Dausen]";
	mes "\"I have a problem.  I mixed up the orders to my men.  If someone would let them know they're going to have to hold their post for a while longer instead of taking a break, it would help me a great deal.  However, I can't leave my post.  Oh what to do, what to do..\"";
	menu
		"Oh, it wouldn't bother me to help you out, since you helped me out", L_LD_Help,
		"Bye bye.", L_LD_NoHelp;
	close;

L_LD_Help:
	set TMW_Quest, 15;
	mes "[Lieutenant Dausen]";
	mes "\"Oh!  You would!  You are ever most helpful.  Could you let Stewen know first.  I worry about the monsters from the eastern desert and he should know before anyone to hold his post.  Hope to hear from you soon!\"";
	close;

L_LD_NoHelp:
	mes "[Lieutenant Dausen]";
	mes "\"See you later.\"";
	close;

L_LD_Waits:
	mes "[Lieutenant Dausen]";
	mes "\"I hope Stewen holds his post.  If you could tell them to do so, it would help me out a great deal.\"";
	close;

L_LD_Nickos:
	set TMW_Quest, 17;
	mes "[Lieutenant Dausen]";
	mes "\"Thanks for letting Stewen know.  Can you now tell Nickos to hold his post?  He guards the mine to the south, monitoring the monster threat and protecting the miners when he can.\"";
	close;

L_LD_Nickos_Waits:
	mes "[Lieutenant Dausen]";
	mes "\"Can you let Nickos know to hold his post?  It would help out a great deal.  He is guarding the mine to the south of here.\"";
	close;

L_LD_Orders:
	set TMW_Quest, 19;
	set zeny, zeny + 500;
	mes "[Lieutenant Dausen]";
	mes "\"Thank you for clearing up the orders to my men.  Here's some gold for your assistance.\"";
	next;
	mes "\"If you think you can handle these monster threats out here, I'm sure Nickos and the miners could use some help.  Talk to you later.\"";
	close;

L_LD_Miners:
	mes "[Lieutenant Dausen]";
	mes "\"I monitor the monster threats surrounding the city to ensure the safe of its citizens.\"";
	next;
	mes "\"If you think you can handle these monster threats out here, I'm sure Nickos and the miners could use some help.  Talk to you later.\"";
	close;

L_LD_Key:
	set TMW_Quest, 34;
	mes "[Lieutenant Dausen]";
	mes "\"Oh, Naem lost his key?  Here, take this spare.  It should help you get into the underground palace.\"";
	close;

}