The Witcher 3
0 of 0

File information

Last updated

Original upload

Created by

andrey4791

Uploaded by

andrey4791

Virus scan

Safe to use

57 comments

  1. andrey4791
    andrey4791
    • premium
    • 27 kudos
    Sticky
    It works for W3 1.22
    ---------------------------------------------------
    If you have script compilation problem then try to google, download and replace script file telemetryKeyword.ws by updated one
    It should go to ..the Witcher 3..\content\content0\scripts\engine\telemetryKeyword.ws
    If it doesn't work then disable scripting mods one by one and try again (...because some of mods still not updated)

    Good luck!
  2. YeungChiLongtimyeung
    YeungChiLongtimyeung
    • supporter
    • 0 kudos
    ..
  3. hecbas
    hecbas
    • member
    • 0 kudos
    how do i change from the HoS theme to the original and the blood and wine one?
  4. JohnnoirAtlas619
    JohnnoirAtlas619
    • member
    • 6 kudos
    For those who wants the original background, but with the Blood and Wine music, just follow the directory, content0\scripts\game\gui, and edit the commonMainMenuBase.ws file.

    Find this line in the file: menutype = thegame.getchosenmainmenutype();

    And change it to: menutype = 2;

    Do the same for mainCreditsMenu.ws in, content0\scripts\game\gui\main_menu.

    Now, go to the modOriginalMainMenu folder and delete the scripts folder.

    Enjoy!
  5. baraker123
    baraker123
    • member
    • 0 kudos
    Thank you very much.
  6. DrDur
    DrDur
    • member
    • 0 kudos
    Does this mod not work for the Game of the Year edition and update? I'm trying to get the original menu, but when I use that download it just gives me the HoS menu.
    1. andrey4791
      andrey4791
      • premium
      • 27 kudos
      You, probably, don't need this Mod at all, because you can choose the video type from game menu itself.
  7. Jeronimous
    Jeronimous
    • member
    • 2 kudos
    Thank you very much for this!
  8. ype4life
    ype4life
    • member
    • 2 kudos
    Can you do a request for me? I love the 'you're immortal' track from HoS and want to listen to it every time I start the game. Can you make a version where it plays the HoS video with that song?

    Edit: saw you can edit commonMainMenuBase.ws, but I don't know how :p
    1. andrey4791
      andrey4791
      • premium
      • 27 kudos
      No, I cannot.
  9. Vulcanao
    Vulcanao
    • supporter
    • 0 kudos
    Hi I don't seem to find the 'Mods" folder. It's just not there in the game directory. I tried to copy the content of the zip file straight to the "content" folder of the game directory but the game just won't start on GOG. Any ideas? How do I find this "Mod" folder? Thanks
    1. andrey4791
      andrey4791
      • premium
      • 27 kudos
      If you didn't install any mods before, then just create Mods folder inside Witcher 3 game folder...
  10. Alienfriend
    Alienfriend
    • member
    • 0 kudos
    Hi!
    I would like to know if it's possible to have the wild hunt menu and the BAW soundtrack together? (No wild hunt theme)
    Thanks!
    1. andrey4791
      andrey4791
      • premium
      • 27 kudos
      In response to post #38804785.
      Spoiler:  
      Show

      Alienfriend wrote: Hi!
      I would like to know if it's possible to have the wild hunt menu and the BAW soundtrack together? (No wild hunt theme)
      Thanks!

      Yes it's possible. ( Don't know what is wild hunt menu though...)

      - Download and install modOriginalMainMenu
      - Locate and open script file commonMainMenuBase.ws located there:
      ..\.. Witcher 3\Mods\modOriginalMainMenu\content\scripts\game\gui - in any text editor ( I use Notepad ++)
      - Find the text below:
      Spoiler:  
      Show
      // Every time we end up in main menu, update hud values in case hud is still loaded but profile has changed
              updateHudConfigs();
              
              theSound.SoundEvent( "play_music_main_menu" );
              
              if ( theGame.GetDLCManager().IsEP2Available() )
              {
                  theSound.SoundEvent( "play_music_toussaint" );
                  theSound.SoundEvent( "mus_main_menu_ep2" );
              }
              else if ( theGame.GetDLCManager().IsEP1Available() )
              {
                  theSound.SoundEvent( "mus_main_menu_theme_ep1" );
              }
              else
              {
                  theSound.SoundEvent( "mus_main_menu_theme" );
              }
          }
      and replace by: 
      Spoiler:  
      Show
      // Every time we end up in main menu, update hud values in case hud is still loaded but profile has changed
              updateHudConfigs();
              
              theSound.SoundEvent( "play_music_main_menu" );
              
              if ( theGame.GetDLCManager().IsEP2Available() )
              {
                  theSound.SoundEvent( "play_music_toussaint" );
                  theSound.SoundEvent( "mus_main_menu_ep2" );
              }
              else if ( theGame.GetDLCManager().IsEP1Available() )
              {
                  theSound.SoundEvent( "play_music_toussaint" );
                  theSound.SoundEvent( "mus_main_menu_ep2" );
              }
              else
              {
                  theSound.SoundEvent( "play_music_toussaint" );
                  theSound.SoundEvent( "mus_main_menu_ep2" );
              }
          }
      - Then save commonMainMenuBase.ws & exit
         Done.

    2. Alienfriend
      Alienfriend
      • member
      • 0 kudos
      Thanks you man!

      PS: In other hand how do it possible to have the original menu but with HOTS song please?
    3. andrey4791
      andrey4791
      • premium
      • 27 kudos
      For that case if you want the original menu with HoS sound:
      - Find the text below:
      Spoiler:  
      Show
      // Every time we end up in main menu, update hud values in case hud is still loaded but profile has changed
              updateHudConfigs();
              
              theSound.SoundEvent( "play_music_main_menu" );
              
              if ( theGame.GetDLCManager().IsEP2Available() )
              {
                  theSound.SoundEvent( "play_music_toussaint" );
                  theSound.SoundEvent( "mus_main_menu_ep2" );
              }
              else if ( theGame.GetDLCManager().IsEP1Available() )
              {
                  theSound.SoundEvent( "mus_main_menu_theme_ep1" );
              }
              else
              {
                  theSound.SoundEvent( "mus_main_menu_theme" );
              }
          }
      and replace by: 
      Spoiler:  
      Show
      // Every time we end up in main menu, update hud values in case hud is still loaded but profile has changed
              updateHudConfigs();
              
              theSound.SoundEvent( "play_music_main_menu" );
              
              if ( theGame.GetDLCManager().IsEP2Available() )
              {
                  theSound.SoundEvent( "mus_main_menu_theme_ep1" );
              }
              else if ( theGame.GetDLCManager().IsEP1Available() )
              {
                  theSound.SoundEvent( "mus_main_menu_theme_ep1" );
              }
              else
              {
                  theSound.SoundEvent( "mus_main_menu_theme_ep1" );
              }
          }

    4. Alienfriend
      Alienfriend
      • member
      • 0 kudos
      Thanks man! it worked perfectly.
      Endorsed!
      Have a nice day.
  11. RolandMG
    RolandMG
    • premium
    • 0 kudos
    Hurray, it worked. I just downloaded the latest patch and it worked.
     
    Thanks for the help! Endorsed!