(08-05-2016, 07:32 PM)Lirania Wrote: Running it in windowed fixed it for me.
I have an other solution for this if you don't mind using a third party program.
I use auto hotkey, it is a program usually used for macro's but you can do other cool stuff with it.
If you create a text file and copy paste this into it:
;Set your game path here
Run, F:\SteamLibrary\steamapps\common\MountBlade Warband\mb_warband.exe
;Set your desktop resolution here
w = 1920
h = 1200
;20 seconds delay before script makes game "fullscreen", you can set different amount, just see that you press play before time has run off
Sleep, 20000
WinMaximize, Mount&Blade Warband
WinGetPos, X, Y, Width, Height, Mount&Blade Warband
DllCall("SetMenu", uint, WinExist( "Mount&Blade Warband" ), uint, 0)
WinSet, Style, -0xC40000, Mount&Blade Warband
WinMove,Mount&Blade Warband,,0,0,w,h
ExitApp
(ExitApp is the last of the code, save the .txt as .ahk file and change the w and h to your monitors resolution, also change the mount and blade game path to the one you use)
The script will move mount and blade to a borderless windowed mode a few seconds after it launches. If you use "U" to chat you can move the mouse to a different monitor without mount and blade minimizing or use alt tab without crashes.
Hope this helps one of you and good luck
.