what it does actually heightening the jumpheight 8 times than before, so i can jump high enough so i can go some places that i feel need to reach, especially when backtracking and such ...
Okay, according to the UE4SS log file, I have the UE4SS and signatures working correctly. The mod is just giving some kind of error in the log file. So I'm guessing it needs updating.
[11:22:58] Engine Version: 5.1 <- Built-in [11:22:58] StaticConstructObject_Internal address: 0x7ff6d7599380 <- Built-in [11:22:58] Fatal Error: AOB scans could not be completed because of the following reasons: Was unable to find AOB for 'FName::ToString' via Lua script
Just play, you will reach soft limits on any stat at ~50 and will invest points into Inferno/Radiance anyway, as they will give you more stats as the soft-limited ones. Maybe Radiance first is more useful, as there are magics for healing, buffing etc., especially the weapon buff is so nice - dual wielding two greatswords. ^^ Bosses are mostly 1st tries, as LotF 2023 is a bit easy in comparison. You will easily reach over level 100 without NG+. Try to always walk in Umbra as long as you can, as it saves hours of extra walking, you always get more exp and you will always see "secret" ways and all items, there are always enemies to farm exp as well. :D
works perfectly thanks a lot, before i was afraid of cliff and other jump moment, the vanilla jump is awful and my poor knight crashed so often in the abyss i left the game for a while. With your mod i can play without fear to fall in the next jump.
49 comments
i foolishly added this
...
JumpForce.ForceDuration = KismetMathLibrary:MapRangeClamped(math.abs(ForwardVelocity), 0.0, 585.0, 0.55, 0.65)
JumpForce.JumpHeight = JumpForce.JumpHeight + JumpForce.JumpHeight + JumpForce.JumpHeight + JumpForce.JumpHeight + JumpForce.JumpHeight + JumpForce.JumpHeight+ JumpForce.JumpHeight+ JumpForce.JumpHeight
if(ForwardVelocity < 0.1) then
...
what it does actually heightening the jumpheight 8 times than before,
so i can jump high enough so i can go some places that i feel need to reach, especially when backtracking and such ...
GO TO THIS LINE:
if(ForwardVelocity < 0.0) then
ForwardVelocity = 0.0
end
EDIT IN :
if(ForwardVelocity < 0.1) then
ForwardVelocity = 0.1
end
SAVE FILE
this fix jump in last game version
edit main.lua file in mods/FreeJump folder
GO TO THIS LINE:
if(ForwardVelocity < 0.0) then
ForwardVelocity = 0.0
end
EDIT IN :
if(ForwardVelocity < 0.1) then
ForwardVelocity = 0.1
end
SAVE FILE
this fix jump in last game version
[11:22:58] Engine Version: 5.1 <- Built-in
[11:22:58] StaticConstructObject_Internal address: 0x7ff6d7599380 <- Built-in
[11:22:58] Fatal Error: AOB scans could not be completed because of the following reasons:
Was unable to find AOB for 'FName::ToString' via Lua script
EDIT: i updated the game and it works now.