l1qht Posted August 30, 2015 Share Posted August 30, 2015 (edited) I used the RagehookPlugin Mod and when the console opens with F4 then the game is stopped This I want to prevent Does it work, and if so how in C# ? Edited August 30, 2015 by l1qht Link to comment Share on other sites More sharing options...
alloc8or Posted August 30, 2015 Share Posted August 30, 2015 Loop SET_GAME_PAUSED(false) but I don't know if it works. l1qht 1 Link to comment Share on other sites More sharing options...
alexguirre Posted August 30, 2015 Share Posted August 30, 2015 (edited) I used the RagehookPlugin Mod and when the console opens with F4 then the game is stopped This I want to prevent Does it work, and if so how in C# ? If you mean that you use RAGEPluginHook to make the mod, use this: Game.IsPaused = true; // Do somethingGame.IsPaused = false You also can use that to check if the game is paused. if(Game.IsPaused){ // Do something} Edited August 30, 2015 by alexguirre l1qht 1 Link to comment Share on other sites More sharing options...
l1qht Posted August 30, 2015 Author Share Posted August 30, 2015 (edited) I used the RagehookPlugin Mod and when the console opens with F4 then the game is stopped This I want to prevent Does it work, and if so how in C# ? If you mean that you use RAGEPluginHook to make the mod, use this: Game.IsPaused = true; // Do somethingGame.IsPaused = false You also can use that to check if the game is paused. if(Game.IsPaused){ // Do something} Then my Mod crashes if i used the lines f(Game.IsPaused){ // Do something} i dont know why .. Did you have another idea? Edited August 30, 2015 by l1qht Link to comment Share on other sites More sharing options...
l1qht Posted August 30, 2015 Author Share Posted August 30, 2015 NativeFunction.CallByName<bool>("SET_GAME_PAUSED", false); Ok so I have resolved Thank you very much. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now