summaryrefslogtreecommitdiff
path: root/world/map/npc/031-1/frozenbeard.txt
blob: 4f871554e5e81e2e66df78d88ad5e0a2727e69e1 (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
//

031-1.gat,97,115,0	script	Frozenbeard	138,{

	mes "[Frozenbeard]";
	mes "\"Arrr mate! There is no dock here, so I had to row boat from my ship!  I am pioneering and mapping the trade route between here and Argaes, around the Hurnscald area.  I'll hail my shipmates to send a boat and we'll sail out to Argaes, be there in no time, but it will cost you a fee.  500 gold pieces.  What do you say?";
	menu
		"Sure.  (500 GP)", L_Frozenbeard_Argaes,
		"Not right now.", L_Frozenbeard_Stay;
	close;

L_Frozenbeard_Argaes:
	if (zeny < 500) goto L_NoMoney;
	mes "[Frozenbeard]";
	mes "\"Pleasant Journeys!\"";
	set zeny, zeny-500;
	warp "008-1.gat",137,64;
	close;

L_Frozenbeard_Stay:
	mes "[Frozenbeard]";
	mes "\"Suit yourself.  Feel free to come out here anytime, I am really busy making sure these routes are accurate.\"";
	close;

L_NoMoney:
	mes "[Frozenbeard]";
	mes "\"You need more money.  I'll wait here while you get some.\"";
	close;
}