diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-06-20 21:45:38 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-06-20 21:48:08 -0300 |
commit | 856302b422da00eaa5317346a11302ccad8882b9 (patch) | |
tree | 0a6271a28a723176cbd4d4f1c13b91003b15b7ab /npc/003-4 | |
parent | cb7e8abbd5aa798c5b802d83567d3f377bd82131 (diff) | |
download | serverdata-856302b422da00eaa5317346a11302ccad8882b9.tar.gz serverdata-856302b422da00eaa5317346a11302ccad8882b9.tar.bz2 serverdata-856302b422da00eaa5317346a11302ccad8882b9.tar.xz serverdata-856302b422da00eaa5317346a11302ccad8882b9.zip |
Fix Sorfina
Diffstat (limited to 'npc/003-4')
-rw-r--r-- | npc/003-4/sorfina.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/003-4/sorfina.txt b/npc/003-4/sorfina.txt index 2910a670e..b7739edc5 100644 --- a/npc/003-4/sorfina.txt +++ b/npc/003-4/sorfina.txt @@ -48,7 +48,7 @@ L_Trouble: L_Basement: if (BaseLevel < 13) goto L_TooWeak; - if (isinstance(getq2(TulimsharQuest_Hasan))) goto L_Wait; + if (getq3(TulimsharQuest_Hasan) < gettimetick(2)) goto L_Wait; mesn; mesq l("There's one on the basement of this house. If you kill it, Hasan will think on you as a hero and won't steal you anymore."); next; @@ -61,7 +61,7 @@ L_OpenDoors: .@MAP_NAME$="hasn@"+str(.@ID); // Max 4 chars for map name .@INSTID = instance_create("003-4-1@a"+(.@ID), getcharid(3), IOT_CHAR); .@instanceMapName$ = instance_attachmap("003-4-1", .@INSTID, 0, .@MAP_NAME$); - setq TulimsharQuest_Hasan, 3, .@INSTID; + setq TulimsharQuest_Hasan, 3, .@INSTID, gettimetick(2)+300; // Debug if (.@instanceMapName$ == "") debugmes "Error: Map 003-4-1 X failed"; |