RavveN Posted July 23, 2011 Share Posted July 23, 2011 scn theamuletquestscript begin onadd; if ( getstage theamuletquest == 10 );setstage theamuletquest 15;endif; endif end Is it correct? -RavveN- Link to comment Share on other sites More sharing options...
MarkInMKUK Posted July 23, 2011 Share Posted July 23, 2011 If nothing else, there seems to be a stray estra endif statement - the number of "if"s and "endif"s MUST match Link to comment Share on other sites More sharing options...
RavveN Posted July 23, 2011 Author Share Posted July 23, 2011 In english that is??? Link to comment Share on other sites More sharing options...
MarkInMKUK Posted July 24, 2011 Share Posted July 24, 2011 scn theamuletquestscript begin onadd; if ( getstage theamuletquest == 10 );setstage theamuletquest 15;endif; endifend Is it correct? -RavveN- Number if "if" statements = 1 Number of Endif statements = 2 Result - problems Link to comment Share on other sites More sharing options...
GreatLucifer Posted July 24, 2011 Share Posted July 24, 2011 In english that is??? The same.... :psyduck: In scripting, it'd be this though; scn theamuletquestscript begin OnAdd if GetStage theamuletquest == 10 setstage theamuletquest 15 endif end Link to comment Share on other sites More sharing options...
RavveN Posted July 24, 2011 Author Share Posted July 24, 2011 Thank you very much :) Link to comment Share on other sites More sharing options...
Recommended Posts