JPHamlett Posted August 16, 2018 Share 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 Quote Link to comment Share on other sites More sharing options...
Rays Posted August 16, 2018 Share 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 Quote Link to comment Share on other sites More sharing options...
Lordsthan Posted August 17, 2018 Share Posted August 17, 2018 I've used this in the past: boolean isOnCutscene(){ return getConfigs().get(1021) == 192 && getMap().isMinimapLocked(); } 1 Quote Link to comment Share on other sites More sharing options...