scriptersteve Posted January 14, 2018 Share Posted January 14, 2018 Hi, i am having problems with the level up window, was looking a complete dialogue, not sure if that is correct though as it seemed to not work Quote Link to comment Share on other sites More sharing options...
Butters Posted January 14, 2018 Share Posted January 14, 2018 Not sure what you're on about. What's a level up window? One way to check if you have leveled up is grab the message from chatbox. Something like: @Override public void onMessage(Message msg) { String message = msg.getMessage(); if (message.contains("just advanced")) { log("Got level up message: " + message); } } Quote Link to comment Share on other sites More sharing options...
scriptersteve Posted January 14, 2018 Author Share Posted January 14, 2018 https://www.google.co.uk/search?q=level+up+window+osrs&rlz=1C1MSNA_enGB669GB669&source=lnms&tbm=isch&sa=X&ved=0ahUKEwiHl6GRmdfYAhVsLsAKHRCUAOMQ_AUICygC&biw=1275&bih=820#imgrc=w9lYepp2ssWyEM: what i mean is when this window pops up, whatever i am doing gets paused until i continue throught the dialogue screen, need to basically just continue through when that appears Quote Link to comment Share on other sites More sharing options...
Butters Posted January 14, 2018 Share Posted January 14, 2018 Just now, scriptersteve said: https://www.google.co.uk/search?q=level+up+window+osrs&rlz=1C1MSNA_enGB669GB669&source=lnms&tbm=isch&sa=X&ved=0ahUKEwiHl6GRmdfYAhVsLsAKHRCUAOMQ_AUICygC&biw=1275&bih=820#imgrc=w9lYepp2ssWyEM: what i mean is when this window pops up, whatever i am doing gets paused until i continue throught the dialogue screen, need to basically just continue through when that appears Aaah, then do if (dialogues.inDialogue()) { dialogues.clickCOntinue(); } 1 Quote Link to comment Share on other sites More sharing options...
scriptersteve Posted January 14, 2018 Author Share Posted January 14, 2018 Thanks matey Quote Link to comment Share on other sites More sharing options...