diff options
author | Jared Adams <jaxad0127@gmail.com> | 2011-06-01 15:27:26 -0600 |
---|---|---|
committer | Jared Adams <jaxad0127@gmail.com> | 2011-06-01 15:37:09 -0600 |
commit | 3d0823d5c9b56be5c3892c0a4e717f961cb93e69 (patch) | |
tree | 6545b29dbd08d81b57f9cb1f9f83df57ead489c2 /npc/031-1_NivalisPort/house.txt | |
parent | c6e448824925eec18edffffc7342399b73b6feb4 (diff) | |
download | serverdata-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/031-1_NivalisPort/house.txt')
-rw-r--r-- | npc/031-1_NivalisPort/house.txt | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/npc/031-1_NivalisPort/house.txt b/npc/031-1_NivalisPort/house.txt deleted file mode 100644 index d9714ef5..00000000 --- a/npc/031-1_NivalisPort/house.txt +++ /dev/null @@ -1,18 +0,0 @@ -// here is based on the queststatus for the rescue Cindy quest, if the player can enter -// player can enter, if Cindy is already saved and the player has been invited, quest status > 2 -// author: Jenalya - -031-1.gat,95,80,0 script #Door 127,1,1,{ - set @Q_Nivalis_state_MASK, NIBBLE_5_MASK; - set @Q_Nivalis_state_SHIFT, NIBBLE_5_SHIFT; - - set @rescue_Cindy, ((QUEST_Nivalis_state & @Q_Nivalis_state_MASK) >> @Q_Nivalis_state_SHIFT); - - if (@rescue_Cindy > 2) goto L_Warp; - message strcharinfo(0), "The door is locked."; - close; - -L_Warp: - warp "031-2.gat", 23, 28; - end; -} |