summaryrefslogtreecommitdiff
path: root/npc/027-1_Graveyard/golbenez.txt
diff options
context:
space:
mode:
authorJessica Tölke <jtoelke@mail.upb.de>2011-02-15 16:59:03 +0100
committerJessica Tölke <jtoelke@mail.upb.de>2011-03-01 17:12:43 +0100
commita26b62359f9c37899eae509576493c25e047ba1f (patch)
tree28f654005989d43ce6ccf612ebf3494a5cac95b2 /npc/027-1_Graveyard/golbenez.txt
parent6b0c7c6f86c1bf6b151882a1de5b3e629d3c9dc0 (diff)
downloadserverdata-a26b62359f9c37899eae509576493c25e047ba1f.tar.gz
serverdata-a26b62359f9c37899eae509576493c25e047ba1f.tar.bz2
serverdata-a26b62359f9c37899eae509576493c25e047ba1f.tar.xz
serverdata-a26b62359f9c37899eae509576493c25e047ba1f.zip
gyinn:
changing golbanez to golbenez in the outside file too headless man: small changes, proposal for needed amount of items
Diffstat (limited to 'npc/027-1_Graveyard/golbenez.txt')
-rw-r--r--npc/027-1_Graveyard/golbenez.txt29
1 files changed, 29 insertions, 0 deletions
diff --git a/npc/027-1_Graveyard/golbenez.txt b/npc/027-1_Graveyard/golbenez.txt
new file mode 100644
index 00000000..f9a4e99f
--- /dev/null
+++ b/npc/027-1_Graveyard/golbenez.txt
@@ -0,0 +1,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;
+}