BobSmokey Posted January 17, 2018 Share Posted January 17, 2018 I was wondering if there is a way to disable the automatic camera turning when you use the interact function on object. The automatic camera turing has minor flaws and sometimes I want to do the whole camera turning manually. Thanks in advance. Quote Link to comment Share on other sites More sharing options...
Explv Posted January 17, 2018 Share Posted January 17, 2018 2 minutes ago, BobSmokey said: I was wondering if there is a way to disable the automatic camera turning when you use the interact function on object. The automatic camera turing has minor flaws and sometimes I want to do the whole camera turning manually. Thanks in advance. Use an InteractionEvent with the disable camera option. At least I think there's a disable camera method, cba to check though. 1 Quote Link to comment Share on other sites More sharing options...
dailysmoker Posted January 17, 2018 Share Posted January 17, 2018 In OSBOT or in OSRS the game itself? Please clear up your question Quote Link to comment Share on other sites More sharing options...
Butters Posted January 17, 2018 Share Posted January 17, 2018 As Explv said, you need to use InteractionEvent "directly" and not the "slimmed down" version which is the interact method. InteractionEvent interactionEvent = new InteractionEvent(entity, action); interactionEvent.setOperateCamera(false); execute(interactionEvent); RS2Object.interact() uses the same thing, just with some default parameters. I think it's mentioned in the API what those default values are. 2 Quote Link to comment Share on other sites More sharing options...
Alek Posted January 17, 2018 Share Posted January 17, 2018 Moved to scripting help section, please ask any future questions in this section. 1 Quote Link to comment Share on other sites More sharing options...