summaryrefslogtreecommitdiff
path: root/world/map/npc/002-1/nickos.txt
blob: bf5de510f59fda70337574614484a7853b72a163 (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
111
112
113
114
// Sandstorm mine guard

002-1.gat,28,94,0	script	Nickos	123,{

	if (TMW_Quest == 32) goto L_Nickos_UGQ;
	if (TMW_Quest == 31) goto L_Nickos_AS_Done;
	if (TMW_Quest == 30) goto L_Nickos_AS_Start;
	if (TMW_Quest >= 23) && (TMW_Quest < 30) goto L_Nickos_Guards;
	if (TMW_Quest == 22) goto L_Nickos_Check_Happy;
	if (TMW_Quest > 19) && (TMW_Quest < 22) goto L_Nickos_Waits;
	if (TMW_Quest == 19) goto L_Nickos_Mine;
	if (TMW_Quest == 18) goto L_Nickos_Orders_Received;
	if (TMW_Quest == 17) goto L_Nickos_Orders;
	if (TMW_Quest < 17) goto L_Nickos_See_Dausen_First;

	mes "[Nickos]";
	mes "\"I'm watching this mine to make sure the monsters don't harm the miners.\"";
	close;

L_Nickos_See_Dausen_First:
	mes "[Nickos]";
	mes "\"I'm watching this mine to make sure the monsters don't harm the miners.\"";
	next;
	mes "[Nickos]";
	mes "\"The mines are closed from tourists due to the monster threat.  If you want to get in you will need to prove yourself first.  Talk to Lieutenant Dausen, my superior, if you want to make a formal complaint.\"";
	close;


L_Nickos_Orders:
	set TMW_Quest, 18;
	mes "[Nickos]";
	mes "\"I have to hold my post longer?  Argh!  I was looking forward to my break.  Oh well, thanks for letting me know.\"";
	close;

L_Nickos_Orders_Received:
	mes "[Nickos]";
	mes "\"Thanks for letting me know Lieutenant Dausen wants me to stick it out for a while longer.  Even though I would've liked my break, I'm sure these miners could use my watchful eye.\"";
	close;

L_Nickos_Mine:
	mes "[Nickos]";
	mes "\"I haven't heard from the miners in a while, but I've got to keep to my post unless there is due reason to investigate.  Normally the miners take care of themselves without any problem.\"";
        next;
        mes "[Nickos]";
        mes "\"Could you check on them for me, though?\"";
	menu
		"Yes.", L_Nickos_Mine_Open,
		"No.", L_Nickos_Disappoint;
	close;

L_Nickos_Disappoint:
	mes "Nickos looks disappointed.";
	close;

L_Nickos_Mine_Open:
	set TMW_Quest, 20;
	mes "[Nickos]";
	mes "\"Excellent!  You now have my permission to enter the mine.  Your assistance helps ease my worries.\"";
	close;

L_Nickos_Waits:
	mes "[Nickos]";
	mes "\"Please be sure to get word from Nathan and Naem to make sure everthing is okay down there.  Your assistance helps ease my worries.\"";
	close;

L_Nickos_Check_Happy:
	set TMW_Quest, 23;
	set zeny, zeny + 500;
	mes "[Nickos]";
	mes "\"Oh, everything is okay?  That's great!  I think they are pretty busy and could use some help.  Feel free to give them a hand.  Here's some gold for your troubles.\"";
	close;

L_Nickos_Guards:
	mes "[Nickos]";
	mes "\"I'm watching this mine to make sure the monsters don't harm the miners.\"";
	next;
	mes "\"Talk to Nathan the miner, I'm sure the miners could use some help down there.\"";
	close;

L_Nickos_AS_Start:
	set TMW_Quest, 31;
	mes "[Nickos]";
	mes "\"Oh, the angry scorpions are becoming a problem?  We could thin down their numbers a bit.  I can make it worth your time, but of course, I'll need something to show your work.  Bring me 10 Angry Scorpion Stingers to demonstrate your effectiveness, and you will be rewarded for your efforts.\"";
	close;

L_Nickos_AS_Done:
	if (countitem ("AngryScorpionStinger") < 10) goto L_Nickos_AS_NotDone;
	getinventorylist;
	if (@inventorylist_count - (countitem("AngryScorpionStinger") == 10) > 99) goto L_Nickos_TooMany;
	set TMW_Quest, 32;
	delitem "AngryScorpionStinger", 10;
	getitem "LeatherShield", 1;
	mes "[Nickos]";
	mes "\"Ah, you are a fine combatant!  Take this Leather Shield, it might be useful for your future battles.\"";
	next;
	mes "\"You might be ready to take on the underground palace.  If you are interested, go talk to Naem about unlocking the barrier, he's got the key and the code to open it.\"";
	close;

L_Nickos_AS_NotDone:
	mes "[Nickos]";
	mes "\"Bring me 10 Angry Scorpion Stingers and I'll know their numbers are down.  You will be rewarded for your efforts.\"";
	close;

L_Nickos_TooMany:
	mes "[Nickos]";
	mes "\"Oh, it seems you have too many items.  Please get rid some some and I'll give you a reward.\"";
	close;

L_Nickos_UGQ:
	mes "[Nickos]";
	mes "\"You might be ready to take on the underground palace.  If you are interested, talk to the miners about unlocking the barrier, they've got the key to open it.\"";
	close;

}