Wizzy
05-24-2004, 11:55 PM
For those of you prone to messing around with things and experimenting, here is one, should you run across it and be all curious and stuff, that you should just leave completely alone.
function Console:Cmd_DIDELTASCALE(scale)
--if IsFinalBuild() then return end
scale = tonumber(scale)
if scale == nil then
CONSOLE.AddMessage("set DInput delta scale")
else
INP.SetDIDeltaScale(scale)
end
scale = INP.GetDIDeltaScale()
CONSOLE.AddMessage("current scale: "..scale)
end
I'm tellin' ya, mess with it at yer own peril.
I have no idea what the default value is supposed to be, so I'm hoping I can find out soon, else it's likely going to mean a re-install to fix it.
EDIT : But since I don't know when to leave things be, I seem to have worked it out.
The usefulness of this is, of course, a matter of individual preference.
It is mouse sensitivity
Setting it to 12 results in a VERY fast "look around" speed ( looking to your left and right in the game )
I had, being a clueless goob at times, previously set it to the insane value of 100, which results in a rather nasty and somewhat immediate death.....not to mention seriously buggering the read of input from the keyboard, and hanging the game itself.
19 seems to be the highest usable setting for this, but only for those who have plenty of Dramamine handy.
So if you want to play the game on the Nausea setting, this is your ticket to unlock this mode :D
function Console:Cmd_DIDELTASCALE(scale)
--if IsFinalBuild() then return end
scale = tonumber(scale)
if scale == nil then
CONSOLE.AddMessage("set DInput delta scale")
else
INP.SetDIDeltaScale(scale)
end
scale = INP.GetDIDeltaScale()
CONSOLE.AddMessage("current scale: "..scale)
end
I'm tellin' ya, mess with it at yer own peril.
I have no idea what the default value is supposed to be, so I'm hoping I can find out soon, else it's likely going to mean a re-install to fix it.
EDIT : But since I don't know when to leave things be, I seem to have worked it out.
The usefulness of this is, of course, a matter of individual preference.
It is mouse sensitivity
Setting it to 12 results in a VERY fast "look around" speed ( looking to your left and right in the game )
I had, being a clueless goob at times, previously set it to the insane value of 100, which results in a rather nasty and somewhat immediate death.....not to mention seriously buggering the read of input from the keyboard, and hanging the game itself.
19 seems to be the highest usable setting for this, but only for those who have plenty of Dramamine handy.
So if you want to play the game on the Nausea setting, this is your ticket to unlock this mode :D