swiffy Posted June 26, 2016 Share Posted June 26, 2016 (edited) Sometimes when my character levels up, the running script will pause until the levelup chatbox-interface is dismissed. Is this a client bug or is it an issue related to the script? Any idea on how to fix this? Edited June 26, 2016 by swiffy 1 Quote Link to comment Share on other sites More sharing options...
Waffe Posted June 26, 2016 Share Posted June 26, 2016 (edited) When you level up, the level up chatbox interrupts what you are currently doing depending on your skill such as cooking. iirc Edited June 26, 2016 by Waffe 1 Quote Link to comment Share on other sites More sharing options...
Chris Posted June 26, 2016 Share Posted June 26, 2016 check if pending continuation -> clickContinue using Dialogue API 1 Quote Link to comment Share on other sites More sharing options...
swiffy Posted June 26, 2016 Author Share Posted June 26, 2016 (edited) check if pending continuation -> clickContinue using Dialogue API if(dialogues.isPendingContinuation()) { dialogues.clickContinue(); } Hmm. Do you think this would fix it? Seems like it according to the API but it seems weird because I've never seen other script-writers use it, haha. Edited June 26, 2016 by swiffy 1 Quote Link to comment Share on other sites More sharing options...
Chris Posted June 26, 2016 Share Posted June 26, 2016 Yes. 1 Quote Link to comment Share on other sites More sharing options...
swiffy Posted June 26, 2016 Author Share Posted June 26, 2016 Yes. Thanks mate Quote Link to comment Share on other sites More sharing options...