Jump to content
  • 0

Can't return to game after minimizing it


AleksCore

Question

Topic name says everything. Happens really too often so I can't do scripting or play. I am using fullscreen mode because in borderless modes brightness too low and can't be changed (probably in borderless mode such bug not happens but I can't use it as it's too dark). Happens on any server. As far as I know this problem is pretty popular but I haven't found a topic about that. Sometimes game restores but it takes too much time. Sometimes crashes.

PC is good, also never had this problem before in earlier MTA versions (though haven't really played last year or more).

Edited by AleksCore
Link to comment

10 answers to this question

Recommended Posts

  • 0

Also I asked players, they also experience this problem. So basically now we returned to 2006 year when minimizing basically didn't worked. Now it works but better to don't use it

Borderless mode should be fixed or Fullscreen, it doesn't matter for me but something requires a fix 

 

https://github.com/multitheftauto/mtasa-blue/issues/1103

Edited by AleksCore
Link to comment
  • 0
1 hour ago, AleksCore said:

Ok sorry, it's KINDA not a problem directly with MTA, because I have just tried MTA SA version 1.4.1 and bug reproduces. Then as Haxardous guess on GitHub it's a problem with Windows 10 latest updates. That's really sad then as I don't want to downgrade my windows.

It’s happening only with people that have an Nvidia GPU, it seems like AMD GPU’s are not affected, probably related to OS version & the GPU.

  • Thanks 1
Link to comment
  • 0

There is a solution, use borderless mode. But then there is trouble with brightness. I have an idea about this too, but need programming skills which I don't have. Need a small app which would increase brightness when MTA SA window is active and then return brightness to normal when minimized.

Link to comment
  • 0

Aaaand I finally found a solution which I like and I want to share it with everyone. So basically now I am using "borderless keep res" mode in MTA. 

In the app Gamma Panel (link above) I set brightness profiles. One is "High" for MTA with a bit higher brightness and hotkey Num8, and one is normal, default, hotkey Num5.

Of course it would be pain in the ass to click hotkeys everytime to change brightness, so there is a solution for this also!

Install "AutoIt!", create a simple script and run it:

While 1
WinWaitActive("[CLASS:Grand theft auto San Andreas]")
Send("{NUMPAD8 down}")
Send("{NUMPAD8 up}")

WinWaitNotActive("[CLASS:Grand theft auto San Andreas]")
Send("{NUMPAD5 down}")
Send("{NUMPAD5 up}")
Wend

Now for me it works perfectly. :)

I am personally happy with this tricky solution. Good if someone will use it too.

P.S. never used AutoIt before, but hopefully did a correct script. It works then its correct I guess (CPU usage by script 0%)

Edited by AleksCore
  • Like 1
  • Thanks 1
Link to comment
  • 0

As MTA SA should be  run as administrator nowadays to work correctly my AutoIt script solution require some changes to work. (otherwise it won't work)

I use this currently:

#pragma compile(ExecLevel, requireAdministrator)
#RequireAdmin

While 1
WinWaitActive("[CLASS:Grand theft auto San Andreas]")
Send("{CTRLDOWN}")
Send("{ALTDOWN}")
Send("{NUMPAD9 down}")
Send("{CTRLUP}")
Send("{ALTUP}")

WinWaitNotActive("[CLASS:Grand theft auto San Andreas]")
Send("{CTRLDOWN}")
Send("{ALTDOWN}")
Send("{NUMPAD6 down}")
Send("{CTRLUP}")
Send("{ALTUP}")
Wend

Might be useful for people. Keys can be any obviously its just what I use currently

Link to comment

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...