MDK 2
Not enough ratings
MDK 2 Windowed Mode Guide by Alyxx
By Alyxxandria
A guide for running MDK 2 in windowed mode.
   
Award
Favorite
Favorited
Unfavorite
MDK 2 Windowed Mode Guide by Alyxx
MDK 2 is not really intended for modern systems on a lot of levels. The game looks weird in widescreen and most of all, it doesn't work all that well with the Steam overlay either. Here's a guide how to run the game in windowed mode so that it works better with Steam.

1. Download the "MDK2.exe" file: https://www.dropbox.com/s/1xpcd8fzi5xjdr8/MDK2.zip?dl=0
This is the original launcher the game came with, for some reason it was not included with the Steam release of the game.

2. Unpack it into your Steam MDK 2 folder ("Program Files (x86)\Steam\steamapps\common" by default).

3. Run it once from this launcher, setting the game to NOT run in fullscreen mode, set the resolution to how big of a window you want.

4. There you go, now you can play the game in windowed mode rather than fullscreen and just alt-tab to friend chats and such. I know, I would rather be able to play it fullscreen as well but this is the best option at the moment. I also suggest disabling steam overlay for the game since it won't be used anyway.

I was hoping to make a patch for this game similar to my MDK fan patch but sadly it doesn't seem like there's anything I can do about the problem. The game uses a default OpenGL renderer and as far as I know, alternate renderers do not exist.

If anyone has any tips about this, let me know in the comments or contact me on Steam.

- Alyxx
10 Comments
laeb6 21 Jun, 2020 @ 10:30am 
Very good your article friend Alyxx; and the comment from our friend DedMoroz is also very useful, I even changed the quality to "1" (mine was "0.8") and it improved a lot .. I'm using it in full screen and at 1920 x 1080, everything working wonderfully - I use windows 7 64 bits, RX 580 and FX8320e.
Alyxxandria  [author] 18 Feb, 2018 @ 2:50am 
@awilson68: I'm not sure, try messing around with your graphics card settings for the game, or updating your drivers. I unfortunately don't have any fixes for graphical glitches with this game...
awilson68 18 Feb, 2018 @ 1:06am 
thank you for the information, I tried these steps, but the graphics are completely messed up, the character appears to be very distorted, if i try to go into the graphics settigs at all, the game will totally crash. Is there no way to fix this so i can play the game?
Dankrani TV 14 Nov, 2017 @ 8:02am 
And for haven't FPS limit?
Aivengo 9 Oct, 2017 @ 6:56am 
thanks!!!
Alyxxandria  [author] 8 Oct, 2017 @ 1:22pm 
Download link updated
Aivengo 8 Oct, 2017 @ 12:50pm 
help link does not work!
Xan0789 8 Apr, 2016 @ 12:01pm 
For some reason, it tells me that I have no screen to set up when I start the game from the launcher you provided.
Alyxxandria  [author] 3 Oct, 2014 @ 10:11am 
Thanks, Egor. The version is the same as retail internally, all my patch does is add the launcher.
DedMoroz 3 Oct, 2014 @ 10:10am 
(Disclaimer: I don't have steam verision. I will assume that internally, it's same as retail.)
You can switch into windowed from Options -> Video -> Full Screen, as far as I know.

Also, you don't need launcher to change settings. Look for \MDK2\save\config.lua file.
Here's format of it:
chSetVideoMode(width,height,bpp,?,fps,fscreen,filter,quality,mm,dx,hwtl)
chSndForceSoftwareMode(sws)
chSndDisable(snd)
chUseDisplayLists(gldl)

width,height - Resolution
bpp - Color Depth
? - Driver (Maybe. Equals to 16 on my machine.)
fps - Refresh Rate
fscreen - Full Screen
filter - Filtering (0 - none; 1 - bilinear; 2 - trilinear)
quality - Texture Quality (0.4; 0.6; 0.8; 1)
mm - Mipmap
dx - Use DirectX for Setting Video Modes
hwtl - Hardware T&L
sws - Disable 3D Sound Acceleration
snd - Disable Sound
gldl - Use OpenGL Display Lists

Example:
chSetVideoMode(960, 720, 32, 16, 120, 0, 2, 1, 0, 1, 0, 1)
chSndForceSoftwareMode(0)
chSndDisable(0)
chUseDisplayLists(0)