Results 1 to 4 of 4

Thread: How to play Risen 3 Titan Lords in fullscreen mode

  1. #1
    Join Date
    Jun 2014
    Posts
    15

    How to play Risen 3 Titan Lords in fullscreen mode

    I recently got my hands on this new Risen 3 Titan Lords game. After installing it on my pc, the game is always starting in Windowed mode. I even went into the game options but there are no options to play or set this game on full screen mode. There are only options to change its resolution and nothing else. Has anyone been successful to run this game on full-screen mode? Thanks for any help.

  2. #2
    Join Date
    Apr 2008
    Posts
    2,277

    Re: How to play Risen 3 Titan Lords in fullscreen mode

    To play this game in fullscreen mode, you will have to go to the directory where you have installed this game first - \Steam\steamapps\common\Risen 3\data\ini\. After that search for and open the file ConfigDefault.xml in notepad. Now do a ctrl+F to and search for FullScreen. You will be able to find it in the XNL tag which might be just near the top. All you need to do is just change the "false" to "true" and save the file. Now you can play this game in full screen and also SLI will work along with crossfire.

  3. #3
    Join Date
    May 2008
    Posts
    2,464

    Re: How to play Risen 3 Titan Lords in fullscreen mode

    There was a user on Steam Community who had solved this problem by setting the game to be played on 2560x1080 without any issues, check his post in the below quoted lines:

    1. edit <path-to-game>\data\ini\ConfigDefault.xml and set the following options:
    <Window
    Top="0"
    Right="2560"
    RefreshRate="60"
    Left="0"
    Bottom="1080"
    AdapterNumber="1"
    >
    </Window>
    *Note: some folks seem to suggest putting the proper aspect ratio into the "gui" section. For good meaure, I added "<Aspect21x9 VirtalWidth="2560" VirtalHeight="1080" EnableDrawScale="True">
    </Aspect21x9>", although I'm not sure if that would work for other resolutions

    2. Edit %APPDATA%\Local\Risen3\Config\ConfigUser.xml, search for "FullScreen", and set it to:
    FullScreen="false"

  4. #4
    Join Date
    May 2009
    Posts
    2,865

    Re: How to play Risen 3 Titan Lords in fullscreen mode

    Another Steam user made a script to solve the problem of windowed mode to full screen mode. First download the autohotkey software from their official website and then copy and paste the below to the running script:
    Code:
    #SingleInstance Force
    #Persistent
    
    SendMode Event
    
    F11::
    {
    WinGet, TempWindowID, ID, A
    If (WindowID != TempWindowID)
    {
    WindowID:=TempWindowID
    WindowState:=0
    }
    If (WindowState != 1)
    {
    WinGetPos, WinPosX, WinPosY, WindowWidth, WindowHeight, ahk_id %WindowID%
    WinSet, Style, ^0xC00000, ahk_id %WindowID%
    WinMove, ahk_id %WindowID%, , 0, 0,1920, 1080
    }
    Else
    {
    WinSet, Style, ^0xC00000, ahk_id %WindowID%
    WinMove, ahk_id %WindowID%, , WinPosX, WinPosY, WindowWidth, WindowHeight
    }
    WindowState:=!WindowState
    return
    }
    Now you just need to press F11 to maximize your window.

Similar Threads

  1. Risen 3 Titan Lords game will not start
    By Egan in forum Video Games
    Replies: 3
    Last Post: 18-08-2014, 12:31 PM
  2. Replies: 6
    Last Post: 16-08-2014, 12:02 PM
  3. Fullscreen mode on Virtual PC.
    By Kanakpriya in forum Operating Systems
    Replies: 5
    Last Post: 02-04-2010, 04:32 AM
  4. Does not support fullscreen mode
    By GoldSpot in forum Monitor & Video Cards
    Replies: 4
    Last Post: 23-03-2009, 12:16 PM
  5. fullscreen mode of dos box not possible
    By Rafal Kubiak in forum Vista Help
    Replies: 3
    Last Post: 29-05-2007, 06:10 AM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,713,898,575.38143 seconds with 17 queries