Thread: Quest questions
View Single Post
  #9  
Old 01-04-2016, 08:04 PM
Kingly_Krab
Administrator
 
Join Date: May 2013
Location: United States
Posts: 1,589
Default

Quote:
Originally Posted by Excuses View Post
Would there be a plugin that handles if taskiscomplete? e.x

Code:
if(quest::istaskcompleted(114)) {
        if($text=~/Yissen/i) {
            plugin::Whisper("Good! I hope he is doing his job, I have a $task for you."); 
        }elsif{
            plugin::Whisper("Seek him out before me, friend.");
        }
    }
Making sure previous task is complete, to move on?
As for your question, check this page: http://wiki.eqemulator.org/p?Task_Sy...sk_System_Main

Note: 'elsif' is invalid due to there being no conditional in parentheses. If you do not have an elsif condition just use 'else'.
Reply With Quote