diff options
author | wushin <pasekei@gmail.com> | 2016-04-21 15:37:05 -0500 |
---|---|---|
committer | wushin <pasekei@gmail.com> | 2016-04-23 18:53:23 -0500 |
commit | 3f175b590d284ef413be0be25c7f74392523414b (patch) | |
tree | 2af26d2602696e6623c75dd54bd28a32e0767c0b /world/map/npc/027-1/golbenez.txt | |
parent | cab5e80475f0fa1370b8587c519bb6b6b7c6190a (diff) | |
download | serverdata-3f175b590d284ef413be0be25c7f74392523414b.tar.gz serverdata-3f175b590d284ef413be0be25c7f74392523414b.tar.bz2 serverdata-3f175b590d284ef413be0be25c7f74392523414b.tar.xz serverdata-3f175b590d284ef413be0be25c7f74392523414b.zip |
Deadmere - Undead Town
Diffstat (limited to 'world/map/npc/027-1/golbenez.txt')
-rw-r--r-- | world/map/npc/027-1/golbenez.txt | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/world/map/npc/027-1/golbenez.txt b/world/map/npc/027-1/golbenez.txt deleted file mode 100644 index cfa09fdb..00000000 --- a/world/map/npc/027-1/golbenez.txt +++ /dev/null @@ -1,39 +0,0 @@ -027-1,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!",L_SoMuchSwag, - "Ok, bring me there.",L_Warp; - -L_SoMuchSwag: - 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", 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; -} |