swiffy Posted June 26, 2016 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
Waffe Posted June 26, 2016 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
Chris Posted June 26, 2016 Posted June 26, 2016 check if pending continuation -> clickContinue using Dialogue API 1
swiffy Posted June 26, 2016 Author 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