millennium Posted April 20, 2018 Share Posted April 20, 2018 (edited) I'm working on a driving instructor mod. I'm loading from a 100% complete save game into an empty world, which is exactly what I want. No mission prompts. The problem I'm having at the moment is the notifications in the left button corner popping up (see screenshot). I want to disable them. At the moment I'm using this. int notID = Function.Call<int>(Hash._GET_ACTIVE_NOTIFICATION_HANDLE); Function.Call(Hash._REMOVE_NOTIFICATION,notID); This removes the notification, but they still pop up for one frame, which is really annoying. I also tried Function.Call(Hash.HIDE_HUD_COMPONENT_THIS_FRAME, hudcomponent);, but the hud components don't include the notifications. Does anyone know how to prevent the notifications from appearing? Edited April 20, 2018 by millennium Link to comment Share on other sites More sharing options...
Ezio Baggins Posted May 13, 2018 Share Posted May 13, 2018 (edited) Hash.DISPLAY_HUD Hash.DISPLAY_RADAR These 2 are not enough ? Edit : ooh u want to display HUD but not notifications. I didnt see the image properly Edited May 13, 2018 by Ezio Baggins Link to comment Share on other sites More sharing options...