summaryrefslogtreecommitdiff
path: root/npc/027-1_Graveyard/golbenez.txt
diff options
context:
space:
mode:
authorJared Adams <jaxad0127@gmail.com>2011-06-01 15:27:26 -0600
committerJared Adams <jaxad0127@gmail.com>2011-06-01 15:37:09 -0600
commit3d0823d5c9b56be5c3892c0a4e717f961cb93e69 (patch)
tree6545b29dbd08d81b57f9cb1f9f83df57ead489c2 /npc/027-1_Graveyard/golbenez.txt
parentc6e448824925eec18edffffc7342399b73b6feb4 (diff)
downloadserverdata-3d0823d5c9b56be5c3892c0a4e717f961cb93e69.tar.gz
serverdata-3d0823d5c9b56be5c3892c0a4e717f961cb93e69.tar.bz2
serverdata-3d0823d5c9b56be5c3892c0a4e717f961cb93e69.tar.xz
serverdata-3d0823d5c9b56be5c3892c0a4e717f961cb93e69.zip
Change the Converter to use different folder names
And update everything to use it.
Diffstat (limited to 'npc/027-1_Graveyard/golbenez.txt')
-rw-r--r--npc/027-1_Graveyard/golbenez.txt36
1 files changed, 0 insertions, 36 deletions
diff --git a/npc/027-1_Graveyard/golbenez.txt b/npc/027-1_Graveyard/golbenez.txt
deleted file mode 100644
index 336cdea3..00000000
--- a/npc/027-1_Graveyard/golbenez.txt
+++ /dev/null
@@ -1,36 +0,0 @@
-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;
-}