BobSmokey Posted January 17, 2018 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.
Explv Posted January 17, 2018 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
dailysmoker Posted January 17, 2018 Posted January 17, 2018 In OSBOT or in OSRS the game itself? Please clear up your question
Butters Posted January 17, 2018 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
Alek Posted January 17, 2018 Posted January 17, 2018 Moved to scripting help section, please ask any future questions in this section. 1