Issue Information
-
#006810
-
3 - Medium
-
Fixed
Issue Confirmations
-
Yes (0)No (0)
Originally posted by altearis
Hi everyone,
looks like i found some bad typo on wanderer job change quest
1. When you at quest killing novus, when the time reached, the message part cannot be shown because some bad typo in if section
2. I don't quite understand on quest script but on
anyone can confirm this?
Hi everyone,
looks like i found some bad typo on wanderer job change quest
1. When you at quest killing novus, when the time reached, the message part cannot be shown because some bad typo in if section
if (checkquest(2221,PLAYIME) == 2) {it should be
if (checkquest(2221,PLAYTIME) == 2) {
2. I don't quite understand on quest script but on
checkquest(2221,PLAYTIME)is return 0 if they still have time limit. so the
if (checkquest(2221,PLAYTIME) == 1) {is always return false because it return 0 if they still have time and if the time expire, it will return 2. so you will never do the next quest step.
anyone can confirm this?