require(GlobalDependencys:GetDependency("StandardBase"):GetPackageName()) --GAME VARS fDefaultFOV = 85 fAdditionalFOV = 0 fAspectRatio = DisplayInfo:GetWidth() / DisplayInfo:GetHeight() fAspectRatio219 = 2.333333254 fAspectRatio169 = 1.777777791 fFactor = 0.00872665 --ControlVars bFixEnabled = true bFOV = true bDOF = true --PROCESS VARS Process_FriendlyName = Module:GetFriendlyName() Process_WindowName = "*" Process_ClassName = "UnrealWindow" Process_EXEName = "LOP-Win64-Shipping.exe" --INJECTION BEHAVIOUR InjectDelay = 500 WriteInterval = 100 SearchInterval = 100 SuspendThread = true --Name Manual/Auto/Hybrid Steam/Origin/Any IncludeFile:Configure;Enable;Periodic;Disable; SupportedVersions = { {"Automatically Detect", "Hybrid", "Any", "Configure_SignatureScan;Enable_Inject;Periodic;Disable_Inject;"}, } function Init_Controls() DefaultControls.AddHeader("Header_FixesEnableDisable","Individual Fixes",245,70,210,17) DefaultControls.AddFixToggle("CKFOVFix_Enable","FOV fix","CKFOVFix_Changed",255,101,180,14) DefaultControls.AddFixToggle("CKDOFFix_Enable","Depth of field disable","CKDOFFix_Changed",255,121,180,14) DefaultControls.AddHeader("Header_FOV","FOV Fine adjustment",15,70,210,17) DefaultControls.AddFixedFOVSlider("FOVSlider","FOVSlider_Changed",55,100,125,35,0,90,0,1) FOVSlider:SetTickFrequency(10) FOVSlider:SetLabel1Text("0") FOVSlider:SetLabel2Text("90") end function Configure_SignatureScan() local tAddress = HackTool:AddAddress("FOV") if HackTool:SignatureScan("E8 ?? ?? ?? ?? ?? 0F ?? ?? 48 8B ?? ?? ?? ?? ?? ?? 48 ?? ?? E8 ?? ?? ?? ?? 0F 28 ?? ?? ?? ?? ?? ?? 48 81",tAddress,PAGE_EXECUTE_READ,0x06,Process_EXEName) == 0 then return ErrorOccurred(string.format(SigScanError,tAddress:GetName())) else print( tAddress:GetInfo(TYPE_ADDRESS) ) --LOP-Win64-Shipping.exe+3E97FDF - E8 5C AD EF FD - call LOP-Win64-Shipping.exe+1D92D40 --LOP-Win64-Shipping.exe+3E97FE4 - 90 - nop --LOP-Win64-Shipping.exe+3E97FE5 - 0F 28 C6 - movaps xmm0,xmm6 --LOP-Win64-Shipping.exe+3E97FE8 - 48 8B 8C 24 70 06 00 00 - mov rcx,[rsp+00000670] --LOP-Win64-Shipping.exe+3E97FF0 - 48 33 CC - xor rcx,rsp end local tAddress = HackTool:AddAddress("DOF") if HackTool:SignatureScan("7E ?? 0F 2F ?? ?? ?? ?? ?? 73 ?? 0F 2F ?? ?? ?? ?? ?? C6",tAddress,PAGE_EXECUTE_READ,0x0,Process_EXEName) == 0 then return ErrorOccurred(string.format(SigScanError,tAddress:GetName())) else print( tAddress:GetInfo(TYPE_ADDRESS) ) --LOP-Win64-Shipping.exe+29754B4 - 48 8B 05 9D 89 9B 04 - mov rax,[LOP-Win64-Shipping.exe+732DE58] --LOP-Win64-Shipping.exe+29754BB - 39 78 04 - cmp [rax+04],edi --LOP-Win64-Shipping.exe+29754BE - 7E 17 - jle LOP-Win64-Shipping.exe+29754D7 --LOP-Win64-Shipping.exe+29754C0 - 0F 2F B6 78 11 00 00 - comiss xmm6,[rsi+00001178] --LOP-Win64-Shipping.exe+29754C7 - 73 0E - jae LOP-Win64-Shipping.exe+29754D7 end return true end function Enable_Inject() local Variables = HackTool:AllocateMemory("Variables",0) Variables:PushFloat("FOVIn") Variables:PushFloat("FOVOut") Variables:PushFloat("AdditionalFOV") Variables:Allocate() Variables["FOVIn"]:WriteFloat(fDefaultFOV) Variables["FOVOut"]:WriteFloat(fDefaultFOV) Variables["AdditionalFOV"]:WriteFloat(fAdditionalFOV) ResolutionChanged() local asm = [[ (codecave:jmp)FOV,FOV_cc: movss [(allocation)Variables->FOVIn],$$2 $ctx=1 addss $$2,[(allocation)Variables->AdditionalFOV] $ctx=1 movss [(allocation)Variables->FOVOut],$$2 $ctx=1 %originalcode% jmp %returnaddress% %end% (codecave)DOF,DOF_cc: jmp $$1 $ctx=1 %end% ]] if HackTool:CompileAssembly(asm,"Fixes") == nil then return ErrorOccurred("Assembly compilation failed...") else Toggle_CodeCave("FOV_cc",bFOV) Toggle_CodeCave("DOF_cc",bDOF) end Write_FOV() end function Periodic() local Variables = HackTool:GetAllocation("Variables") if Variables and Variables["FOVIn"] and Variables["AdditionalFOV"] then local fFOVIn = Variables["FOVIn"]:ReadFloat() local fFOVOut = Variables["FOVOut"]:ReadFloat() PluginViewport:AppendStatusMessage( string.format("\r\n===== Fix informations =====\r\nFOV In: %0.2f, FOV Out : %.02f", fFOVIn, fFOVOut)) end end function FOVSlider_Changed(Sender) fAdditionalFOV = Sender:GetPosition() - 20 lblFOVSlider.Caption:SetCaption( string.format("Value: +%.0f",fAdditionalFOV) ) Write_FOV() ForceUpdate() end function Write_FOV() local Variables = HackTool:GetAllocation("Variables") if Variables and Variables["AdditionalFOV"] then if bFOV == true then Variables["AdditionalFOV"]:WriteFloat(fAdditionalFOV) else Variables["AdditionalFOV"]:WriteFloat(0) end end end function Disable_Inject() CleanUp() end function CKFOVFix_Changed(Sender) bFOV = Toggle_CheckFix(Sender) Write_FOV() Toggle_CodeCave("FOV_cc",bFOV) ForceUpdate() end function CKDOFFix_Changed(Sender) bDOF = Toggle_CheckFix(Sender) Toggle_CodeCave("DOF_cc",bDOF) ForceUpdate() end function ResolutionChanged() SyncDisplayDetection() end function Init() Init_BaseControls() Init_Controls() end function DeInit() DisableFix() end