Daimond wrote:
flawless widescreen will not load up when running dx9. The 1 or 2 times game would not crash when loading dx11 it starts and runs as intented.
The patch is only designed for the DX11 version - however I guess it's possible that the same signature scan will work on the DX9 executable, I've never tried it.
You could try editing C:\Program Files (x86)\Flawless Widescreen\PluginCache\FWS_Plugins\Modules\Farcry3\Dependencies\Scripts\Farcry3_UI.lua (use notepad++ or something that supports linux line endings)
And change this code block:
Code:
if HackTool:FindProcess("*","farcry3_d3d11.exe","*") == true then
FWSBinds.c_Tools_PumpedSleep(1000)
HackTool:OpenProcess(FWSBinds.P_ALL_ACCESS)
VersionCombo_Changed(VersionCombo)
else
PluginViewport:SetStatusMessage( "Searching for " .. ProcessFriendlyName .. " process, please configure desired settings and launch the game." )
end
To this:
Code:
if HackTool:FindProcess("*","farcry3_d3d11.exe","*") == true then
FWSBinds.c_Tools_PumpedSleep(1000)
HackTool:OpenProcess(FWSBinds.P_ALL_ACCESS)
VersionCombo_Changed(VersionCombo)
elseif HackTool:FindProcess("*","farcry3_d3d9.exe","*") == true then
FWSBinds.c_Tools_PumpedSleep(1000)
HackTool:OpenProcess(FWSBinds.P_ALL_ACCESS)
VersionCombo_Changed(VersionCombo)
else
PluginViewport:SetStatusMessage( "Searching for " .. ProcessFriendlyName .. " process, please configure desired settings and launch the game." )
end
_________________
Resident Jester -
Flawless Widescreen -
Widescreen gaming the way it should be.
[
Steam Profile]
Want to keep Flawless Widescreen alive?
Donate Here