diff options
author | Jessica Tölke <jtoelke@mail.upb.de> | 2011-10-14 15:22:43 +0200 |
---|---|---|
committer | Jessica Tölke <jtoelke@mail.upb.de> | 2011-10-14 16:35:08 +0200 |
commit | a5cc84660484054451ab8c912ec6fc4652eac1a0 (patch) | |
tree | a60b55aa8bdf8b654e2d0c2889464a685c950f04 /world/map/npc/027-2/cerhan.txt | |
parent | 196973261680a938b082e195c7d62cbb33e24216 (diff) | |
download | serverdata-a5cc84660484054451ab8c912ec6fc4652eac1a0.tar.gz serverdata-a5cc84660484054451ab8c912ec6fc4652eac1a0.tar.bz2 serverdata-a5cc84660484054451ab8c912ec6fc4652eac1a0.tar.xz serverdata-a5cc84660484054451ab8c912ec6fc4652eac1a0.zip |
Some clean-up in gy inn npcs:
Setting all locally used temporary player variables to zero before closing.
Replacing baselevel with BaseLevel, zeny with Zeny and hp with Hp.
Diffstat (limited to 'world/map/npc/027-2/cerhan.txt')
-rw-r--r-- | world/map/npc/027-2/cerhan.txt | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/world/map/npc/027-2/cerhan.txt b/world/map/npc/027-2/cerhan.txt index 51a14dd7..83598354 100644 --- a/world/map/npc/027-2/cerhan.txt +++ b/world/map/npc/027-2/cerhan.txt @@ -1,3 +1,5 @@ +// Author: Jenalya + 027-2.gat,70,77,0|script|Cerhan|311,{ mes "[Cerhan]"; mes "\"Ah, hello! It is good to see another normal human at this strange place!\""; @@ -5,7 +7,7 @@ menu "That's true. What are you doing here?",L_Story, "Yes, this place is really strange. I'm going to have another look around.",-; - close; + goto L_Close; L_Story: mes "[Cerhan]"; @@ -19,7 +21,7 @@ L_Story: "Good luck with that.",-; mes "[Cerhan]"; mes "\"If you are interested in weapons and armor, you may want to come back later.\""; - close; + goto L_Close; L_Mylarin: mes "[Cerhan]"; @@ -28,5 +30,8 @@ L_Mylarin: mes "\"I can craft you an amazing strong armor with that - uhm, well, I first need to set up my smithy here.\""; next; mes "\"Please come back, when I'm ready with that. Mylarin dust... amazing.\""; + goto L_Close; + +L_Close: close; } |