diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-05-23 18:50:36 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-05-23 18:50:36 -0300 |
commit | a430851cb16ffb4df90e1067a5335ec19edfe71b (patch) | |
tree | 2504a9e20a1b1beefc10b7d74f00cf9ab756ccf7 | |
parent | 9b5cadb49152a2e56841e52a864374870c243b7a (diff) | |
download | serverdata-a430851cb16ffb4df90e1067a5335ec19edfe71b.tar.gz serverdata-a430851cb16ffb4df90e1067a5335ec19edfe71b.tar.bz2 serverdata-a430851cb16ffb4df90e1067a5335ec19edfe71b.tar.xz serverdata-a430851cb16ffb4df90e1067a5335ec19edfe71b.zip |
Fix Bugs :inGame_e:
-rw-r--r-- | npc/003-4/warp.txt | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/npc/003-4/warp.txt b/npc/003-4/warp.txt index 399cddc24..df3360fff 100644 --- a/npc/003-4/warp.txt +++ b/npc/003-4/warp.txt @@ -3,10 +3,7 @@ 003-4,38,31,0 script Mahoud Basement NPC_HIDDEN,0,0,{ OnTouch: - dispbottom(isinstance(getq2(TulimsharQuest_Hasan))); - dispbottom(getq2(TulimsharQuest_Hasan)); - end; - if (isinstance(getq2(TulimsharQuest_Hasan))) + if (isinstance(getq2(TulimsharQuest_Hasan)) && getq2(TulimsharQuest_Hasan) != 0) warp "hasn@"+str(getcharid(0)), 34, 27; else if (getq(TulimsharQuest_Hasan) > 3) warp "003-4-1", 34, 27; |