Hi there.
Messing around with Iris recently. I was tired of my character running by default. I fixed that by changing the following code in lua\lib.tilefreewalk.lua at line 181 :
Code:
local maxspeed = fRequestedSpeed * gSecondsSinceLastFrame
if (bSlowWalk) then maxspeed = maxspeed * 0.5 end -- TODO : bSlowWalk-speed
bRunRequested = not bSlowWalk
changed to :
Code:
local maxspeed = fRequestedSpeed * gSecondsSinceLastFrame
if not (bSlowWalk) then maxspeed = maxspeed * 0.5 end -- TODO : bSlowWalk-speed
bRunRequested = bSlowWalk
My character now walks by default and run when I press left-shift. But I wonder if that might broke something or not...