The idle or cinematic cam that becomes active after a certain time and constantly points to other things.
can be easily deactivated. I'm going to post a snippet of code here to help you disable the IDLE camera (reset the idle timer).
RAGE:MP Clientside Snipped:
let IdleDate = new Date();
mp.events.add('render', () => {
const dif = new Date().getTime() - IdleDate.getTime();
const seconds = dif / 1000;
if (Math.abs(seconds) > 29.5) {
mp.game.invoke(`0xF4F2C0D4EE209E20`); //Clear Idle Timer
IdleDate = new Date();
}
});
Have Fun