summaryrefslogtreecommitdiff
path: root/world/map/npc/027-1/golbenez.txt
diff options
context:
space:
mode:
authorBen Longbons <b.r.longbons@gmail.com>2011-06-18 21:58:47 -0700
committerBen Longbons <b.r.longbons@gmail.com>2011-06-19 14:19:55 -0700
commitbae4b92e560c2694eaaf0e8b4d9e95e56204471b (patch)
tree4acc120f6a94cfbf9694bf344658493de5aaa67b /world/map/npc/027-1/golbenez.txt
parent319f80526f8585ecadaec986e37c9bd326f4d363 (diff)
downloadserverdata-bae4b92e560c2694eaaf0e8b4d9e95e56204471b.tar.gz
serverdata-bae4b92e560c2694eaaf0e8b4d9e95e56204471b.tar.bz2
serverdata-bae4b92e560c2694eaaf0e8b4d9e95e56204471b.tar.xz
serverdata-bae4b92e560c2694eaaf0e8b4d9e95e56204471b.zip
Move to a subdirectory
Diffstat (limited to 'world/map/npc/027-1/golbenez.txt')
-rw-r--r--world/map/npc/027-1/golbenez.txt36
1 files changed, 36 insertions, 0 deletions
diff --git a/world/map/npc/027-1/golbenez.txt b/world/map/npc/027-1/golbenez.txt
new file mode 100644
index 00000000..336cdea3
--- /dev/null
+++ b/world/map/npc/027-1/golbenez.txt
@@ -0,0 +1,36 @@
+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;
+ if (baselevel < 60) goto L_Weak;
+ 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've 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;
+
+L_Weak:
+ mes "\"It is astonishing how WEAK you humans can be.\"";
+ next;
+ mes "\"Come back when you're a bit more experienced.\"";
+ close;
+}