Can anyone HELP Me find this error please?
I dont know where the error might be so ill just give you all the lines i have made ^^ The error is in the Job Changer somewhere...
http://i251.photobucket.com/albums/g...untitled-1.jpg
PHP Code:
;Shiny Demon Job Changer
(quest (index 1997 1)
(case (if (level 30) (specialty 0 0))
(then (specialty 1) (clear 1997 1)))
(case (if (level 30) (specialty 2 0))
(then (specialty 1) (clear 1997 1)))
(case (if (level 30) (specialty 1 0))
(then (specialty 1) (clear 1997 1)))
(case (then )))
;IC, Commander,CJB
(quest (index 1998 1)
(case (if (clear 1998 1)) (then (html 600700)))
(case (then (link 1998 2))))
(quest (index 1998 2) (linked 1)
(case (if (level 50) (specialty 0 1))
(then (specialty 2) (clear 1998 1)(clear 1999 1) (html 600700)))
(case (if (level 50) (specialty 1 1))
(then (specialty 2) (clear 1998 1)(clear 1999 1) (html 600700)))
(case (if (level 50) (specialty 2 1))
(then (specialty 2) (clear 1998 1)(clear 1999 1) (html 600700)))
(case (then (html 600700)))
)
;IC,Commander,CJB
(quest (index 1999 1)
(case (if (clear 1999 1)) (then (html 600700))
(case (then (link 1999 2))))
(quest (index 1999 2) (linked 1)
(case (if (level 50) (specialty 0 1))
(then (specialty 3) (clear 1999 1)(clear 1998 1) (html 600700)))
(case (if (level 50) (specialty 1 1))
(then (specialty 3) (clear 1999 1)(clear 1998 1) (html 600700)))
(case (if (level 50) (specialty 2 1))
(then (specialty 3) (clear 1999 1)(clear 1998 1) (html 600700)))
(case (then (html 600700)))
)
Re: Can anyone HELP Me find this error please?
You Missed a ")"
;Shiny Demon Job Changer
(quest (index 1997 1)
(case (if (level 30) (specialty 0 0))
(then (specialty 1) (clear 1997 1)))
(case (if (level 30) (specialty 2 0))
(then (specialty 1) (clear 1997 1)))
(case (if (level 30) (specialty 1 0))
(then (specialty 1) (clear 1997 1)))
(case (then )))
;IC, Commander,CJB
(quest (index 1998 1)
(case (if (clear 1998 1)) (then (html 600700)))
(case (then (link 1998 2))))
(quest (index 1998 2) (linked 1)
(case (if (level 50) (specialty 0 1))
(then (specialty 2) (clear 1998 1)(clear 1999 1) (html 600700)))
(case (if (level 50) (specialty 1 1))
(then (specialty 2) (clear 1998 1)(clear 1999 1) (html 600700)))
(case (if (level 50) (specialty 2 1))
(then (specialty 2) (clear 1998 1)(clear 1999 1) (html 600700)))
(case (then (html 600700)))
)
;IC,Commander,CJB
(quest (index 1999 1)
(case (if (clear 1999 1)) (then (html 600700))")"
(case (then (link 1999 2))))
(quest (index 1999 2) (linked 1)
(case (if (level 50) (specialty 0 1))
(then (specialty 3) (clear 1999 1)(clear 1998 1) (html 600700)))
(case (if (level 50) (specialty 1 1))
(then (specialty 3) (clear 1999 1)(clear 1998 1) (html 600700)))
(case (if (level 50) (specialty 2 1))
(then (specialty 3) (clear 1999 1)(clear 1998 1) (html 600700)))
(case (then (html 600700)))
)
Re: Can anyone HELP Me find this error please?
you forgot a command (9th line)
Quote:
Originally Posted by
DarkBlade92
PHP Code:
;Shiny Demon Job Changer
(quest (index 1997 1)
(case (if (level 30) (specialty 0 0))
(then (specialty 1) (clear 1997 1)))
(case (if (level 30) (specialty 2 0))
(then (specialty 1) (clear 1997 1)))
(case (if (level 30) (specialty 1 0))
(then (specialty 1) (clear 1997 1)))
(case (then ))) Whats about that ? a command is missing !
;IC, Commander,CJB
(quest (index 1998 1)
(case (if (clear 1998 1)) (then (html 600700)))
(case (then (link 1998 2))))
(quest (index 1998 2) (linked 1)
(case (if (level 50) (specialty 0 1))
(then (specialty 2) (clear 1998 1)(clear 1999 1) (html 600700)))
(case (if (level 50) (specialty 1 1))
(then (specialty 2) (clear 1998 1)(clear 1999 1) (html 600700)))
(case (if (level 50) (specialty 2 1))
(then (specialty 2) (clear 1998 1)(clear 1999 1) (html 600700)))
(case (then (html 600700)))
)
;IC,Commander,CJB
(quest (index 1999 1)
(case (if (clear 1999 1)) (then (html 600700))
(case (then (link 1999 2))))
(quest (index 1999 2) (linked 1)
(case (if (level 50) (specialty 0 1))
(then (specialty 3) (clear 1999 1)(clear 1998 1) (html 600700)))
(case (if (level 50) (specialty 1 1))
(then (specialty 3) (clear 1999 1)(clear 1998 1) (html 600700)))
(case (if (level 50) (specialty 2 1))
(then (specialty 3) (clear 1999 1)(clear 1998 1) (html 600700)))
(case (then (html 600700)))
)