Kingdom Come: Deliverance - 3D-Vision Ready Fix V3.20
  17 / 18    
It's already [b]very[/b] nice right now! Here's some flat out perfect water reflections [img]https://forums.geforce.com/cmd/default/download-comment-attachment/76286/[/img] Oh! Here's a detail that would be hugely hard to spot in 2D. Notice how the wall paintings are covered by a thin weaving to keep the dirt off? Clever Bohemians! [img]https://forums.geforce.com/cmd/default/download-comment-attachment/76285/[/img] And there's excellent sunsets! [img]https://forums.geforce.com/cmd/default/download-comment-attachment/76287/[/img] [img]https://forums.geforce.com/cmd/default/download-comment-attachment/76288/[/img]
It's already very nice right now!

Here's some flat out perfect water reflections
Image

Oh! Here's a detail that would be hugely hard to spot in 2D. Notice how the wall paintings are covered by a thin weaving to keep the dirt off? Clever Bohemians!
Image

And there's excellent sunsets!
Image
Image

The very powerful and the very stupid have one thing in common. Instead of altering their views to fit the facts, they alter the facts to fit their views ... which can be very uncomfortable if you happen to be one of the facts that needs altering.

-- Doctor Who, "Face of Evil"

Posted 10/26/2018 01:20 AM   
THis damn flickering will make me crazyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy I think its too complicated for the normal users to release the improved version and i dont know if this is universal- If any1 is inerested in some testing, please write me a PM.
THis damn flickering will make me crazyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy

I think its too complicated for the normal users to release the improved version and i dont know if this is universal-


If any1 is inerested in some testing, please write me a PM.

Like my work? Donations can be made via PayPal to: rauti@inetmx.de

Posted 10/27/2018 05:42 PM   
[u][b]Release 3.11:[/b][/u] https://helixmod.blogspot.com/2018/03/kingdom-come-deliverance-3d-vision.html

Like my work? Donations can be made via PayPal to: rauti@inetmx.de

Posted 10/28/2018 05:26 PM   
Bravo!
Bravo!

Posted 10/31/2018 04:09 PM   
//skip this
//skip this

Like my work? Donations can be made via PayPal to: rauti@inetmx.de

Posted 11/01/2018 07:37 AM   
.
.

Like my work? Donations can be made via PayPal to: rauti@inetmx.de

Posted 11/01/2018 06:03 PM   
"DO NOT USE ULTRA SETTINGS if you have performance problems" - unless you care more about your screenshots than your ability to defend yourself from attackers. One must sometimes make sacrifices for one's art! ;) Note: if you're using this and you alt-tab out, you can right click on the green H in your system tray to put auto-key on pause. Just remember to turn it back on before you alt-tab back in! If you don't pause it, you'll get graphics commands sent to your screen whenever you type T or F1-F4 with odd results.
"DO NOT USE ULTRA SETTINGS if you have performance problems" - unless you care more about your screenshots than your ability to defend yourself from attackers. One must sometimes make sacrifices for one's art! ;)

Note: if you're using this and you alt-tab out, you can right click on the green H in your system tray to put auto-key on pause. Just remember to turn it back on before you alt-tab back in! If you don't pause it, you'll get graphics commands sent to your screen whenever you type T or F1-F4 with odd results.

The very powerful and the very stupid have one thing in common. Instead of altering their views to fit the facts, they alter the facts to fit their views ... which can be very uncomfortable if you happen to be one of the facts that needs altering.

-- Doctor Who, "Face of Evil"

Posted 11/02/2018 02:30 AM   
Ill be sure there is a way to kill/supress auto hotkey command in windows.....thourgth this is done by the line #IfWinActive Kingdom Come: Deliverance BUT: hehe in windows Kingdom Come: Deliverance is active also ^^ Ill see what i can do here. Its also a problem starting a new game and typing some what like T in the games name ^^ HEHE but i will make this.... THX FOR TESTING HERE !!! Ill implemented more DAU breakes in the CMD script and more options ... just need some time to finish up. DAMN i like return to MS-DOS commands some times ^^ thats some what of my past and i LIKE IT !!!!!!!!!!!!!!!!! Started with computers using MS-DOS without any WINDOWS ... command line was your friends...HOLY SHIT the norton commander was a dream !!!!!!!!!!!!!!!!! :-) Wrote a complete usable order maintenance programm in batch for my selve in my firm ^^ .... not planed in such a extent but things are raising fast......This script was about 12000 code lines !!!! ... YES NOW i do know why FUNCTIONS are here in the world of programming ^^ but i do only know BATCH ^^ (hence i have go without it ^^ ):-)))))))))))))))))))))))))))))
Ill be sure there is a way to kill/supress auto hotkey command in windows.....thourgth this is done by the line #IfWinActive Kingdom Come: Deliverance BUT: hehe in windows Kingdom Come: Deliverance is active also ^^

Ill see what i can do here. Its also a problem starting a new game and typing some what like T in the games name ^^

HEHE but i will make this....


THX FOR TESTING HERE !!!


Ill implemented more DAU breakes in the CMD script and more options ... just need some time to finish up.

DAMN i like return to MS-DOS commands some times ^^ thats some what of my past and i LIKE IT !!!!!!!!!!!!!!!!!

Started with computers using MS-DOS without any WINDOWS ... command line was your friends...HOLY SHIT the norton commander was a dream !!!!!!!!!!!!!!!!!

:-)


Wrote a complete usable order maintenance programm in batch for my selve in my firm ^^ .... not planed in such a extent but things are raising fast......This script was about 12000 code lines !!!! ... YES NOW i do know why FUNCTIONS are here in the world of programming ^^ but i do only know BATCH ^^ (hence i have go without it ^^ ):-)))))))))))))))))))))))))))))

Like my work? Donations can be made via PayPal to: rauti@inetmx.de

Posted 11/02/2018 06:27 PM   
    For your AutoHotkey code, you can use either of these two lines: [code]#IfWinActive Kingdom Come: Deliverance ahk_exe <GAME_EXE_NAME>.exe #IfWinActive ahk_exe <GAME_EXE_NAME>.exe[/code] and your hotkeys should stick to just the game window. Also, if you aren't closing your AHK exe upon the game closing, then here's (untested) code for that: [code]#Persistent SetTimer, Process_Check, 1000 return Process_Check() { Process, exist, <GAME_EXE_NAME>.exe if (!errorlevel) ExitApp }[/code]     Tailor the above code blocks to your needs. Also the code is different based on whether this is AHK_L or AHK_H. The above code is for AHK_L.    AHK should be able to do everything the batch files do. For example, the [url=https://www.autohotkey.com/docs/commands/Run.htm]Run[/url] command is similar to batch's "start". As far as getting input from the user, you could use [url=https://www.autohotkey.com/docs/commands/InputBox.htm]InputBox[/url] or create a [url=https://www.autohotkey.com/docs/commands/Gui.htm]GUI[/url].    Hope this helps!
    For your AutoHotkey code, you can use either of these two lines:

#IfWinActive Kingdom Come: Deliverance ahk_exe <GAME_EXE_NAME>.exe
#IfWinActive ahk_exe <GAME_EXE_NAME>.exe

and your hotkeys should stick to just the game window. Also, if you aren't closing your AHK exe upon the game closing, then here's (untested) code for that:

#Persistent
SetTimer, Process_Check, 1000

return

Process_Check()
{
Process, exist, <GAME_EXE_NAME>.exe
if (!errorlevel)
ExitApp
}


    Tailor the above code blocks to your needs. Also the code is different based on whether this is AHK_L or AHK_H. The above code is for AHK_L.

   AHK should be able to do everything the batch files do. For example, the Run command is similar to batch's "start". As far as getting input from the user, you could use InputBox or create a GUI.

   Hope this helps!

---
Windows 10 x64 / 1x 980Ti GPU (no SLI, 418.81 driver) / 1920x1080

Posted 11/02/2018 09:26 PM   
COOL THANK YOU !!! //EDITH: FUNZT!!!!!!!!!!!!!!!!!!! (its working !!!)
COOL THANK YOU !!!

//EDITH: FUNZT!!!!!!!!!!!!!!!!!!! (its working !!!)

Like my work? Donations can be made via PayPal to: rauti@inetmx.de

Posted 11/03/2018 03:38 PM   
Before I forget (again) - the uninstall batch file needs an update with all these new files!
Before I forget (again) - the uninstall batch file needs an update with all these new files!

The very powerful and the very stupid have one thing in common. Instead of altering their views to fit the facts, they alter the facts to fit their views ... which can be very uncomfortable if you happen to be one of the facts that needs altering.

-- Doctor Who, "Face of Evil"

Posted 11/03/2018 06:24 PM   
[quote="Zloth"]Before I forget (again) - the uninstall batch file needs an update with all these new files![/quote] of cause ^^ this is a minor thing to do here ^^ I will finish this up tomorrow ^^
Zloth said:Before I forget (again) - the uninstall batch file needs an update with all these new files!


of cause ^^

this is a minor thing to do here ^^

I will finish this up tomorrow ^^

Like my work? Donations can be made via PayPal to: rauti@inetmx.de

Posted 11/03/2018 07:38 PM   
The game is messing with me! Shift key suddenly stopped working for running and I couldn't figure out why. I reverted to the old mod. Same thing. I took out the mod completely. Same thing!! Turns out it was because I picked up a halberd. That blocks running and fast travel on horses as well. Trixy game.
The game is messing with me! Shift key suddenly stopped working for running and I couldn't figure out why. I reverted to the old mod. Same thing. I took out the mod completely. Same thing!!

Turns out it was because I picked up a halberd. That blocks running and fast travel on horses as well. Trixy game.

The very powerful and the very stupid have one thing in common. Instead of altering their views to fit the facts, they alter the facts to fit their views ... which can be very uncomfortable if you happen to be one of the facts that needs altering.

-- Doctor Who, "Face of Evil"

Posted 11/03/2018 09:20 PM   
-
-

Like my work? Donations can be made via PayPal to: rauti@inetmx.de

Posted 11/04/2018 04:43 PM   
Finished here ! I am over and out !! [u][b]Release 3.11:[/b][/u] https://helixmod.blogspot.com/2018/03/kingdom-come-deliverance-3d-vision.html any thing refering this fix via email please. Ill try to care about it.
Finished here !

I am over and out !!

Release 3.11:

https://helixmod.blogspot.com/2018/03/kingdom-come-deliverance-3d-vision.html


any thing refering this fix via email please. Ill try to care about it.

Like my work? Donations can be made via PayPal to: rauti@inetmx.de

Posted 11/05/2018 08:26 PM   
  17 / 18    
Scroll To Top