JPHamlett Posted August 16, 2018 Posted August 16, 2018 How would I go about detecting if the player is in a cutscene? I am working on a Romeo & Juliet solver
Rays Posted August 16, 2018 Posted August 16, 2018 (edited) As tabs are always disabled in cutscenes, you can check if inventory tab is disabled and make the script wait or something. Edited August 16, 2018 by Rays
Lordsthan Posted August 17, 2018 Posted August 17, 2018 I've used this in the past: boolean isOnCutscene(){ return getConfigs().get(1021) == 192 && getMap().isMinimapLocked(); } 1