summaryrefslogtreecommitdiff
path: root/npc/027-1_Graveyard/golbenez.txt
blob: f9a4e99f2d1d48418af32626a4b88c42b7aeeb8e (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
027-1.gat,68,89,0	script	#Golbenez#_M	204,{

	set @fee, 666;

	mes "[Golbenez]";
	mes "\"Welcome mortal. I finished the creation of the place of leisure.\"";
	next;
	mes "\"I will bring you there for a small fee of " + @fee + "GP.\"";
	menu
		"What? You already got so much money!",-,
		"Ok, bring me there.",L_Warp;

	mes "[Golbenez]";
	mes "\"Come back when you changed your mind. It's a wonderful place.\"";
	close;

L_Warp:
	if (zeny < @fee) goto L_No_Money;
	set zeny, zeny - @fee;
	warp "027-2.gat", 105, 44;
	close;

L_No_Money:
	mes "[Golbenez]";
	mes "\"Don't try to betray me, pitiful human.\"";
	next;
	mes "\"Come back when you can pay my service.\"";
	close;
}