summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJessica Tölke <jtoelke@mail.upb.de>2011-02-13 17:22:20 +0100
committerJessica Tölke <jtoelke@mail.upb.de>2011-02-13 17:22:20 +0100
commitc3e76f9d8a8962275d490f16d462d8b36061957d (patch)
tree89b3987a34d4109d025537db33d2a100b6aaf6ca
parentf22b31fe02c7e2041dd9981214ff8dcb3f4e125d (diff)
downloadserverdata-c3e76f9d8a8962275d490f16d462d8b36061957d.tar.gz
serverdata-c3e76f9d8a8962275d490f16d462d8b36061957d.tar.bz2
serverdata-c3e76f9d8a8962275d490f16d462d8b36061957d.tar.xz
serverdata-c3e76f9d8a8962275d490f16d462d8b36061957d.zip
gy inn: adding the golbanez script in 027-1 I forgot in the last commit
-rw-r--r--npc/027-1_Graveyard/golbanez.txt29
1 files changed, 29 insertions, 0 deletions
diff --git a/npc/027-1_Graveyard/golbanez.txt b/npc/027-1_Graveyard/golbanez.txt
new file mode 100644
index 00000000..4e503d69
--- /dev/null
+++ b/npc/027-1_Graveyard/golbanez.txt
@@ -0,0 +1,29 @@
+027-1.gat,68,89,0 script #Golbenez#_M 204,{
+
+ set @fee, 666;
+
+ mes "[Golbanez]";
+ 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 "[Golbanez]";
+ 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 "[Golbanez]";
+ mes "\"Don't try to betray me, pitiful human.\"";
+ next;
+ mes "\"Come back when you can pay my service.\"";
+ close;
+}