Here is a very short script that lets you toggle walking speed between 140 and 220. Basically, it is a crude workaround that lets you toggle between walk and "run". It's not perfect because of the stamina system, but it's better than having to hold down the shift key.
Daredevil's Run Toggle Mod for Doom 3 Description =========== I didn't like having to hold down the shift key to run, especially while strafing during combat. But I still wanted to be able to walk normally. This script makes CAPSLOCK toggle walkspeed between 140 (default walkspeed) and 220 (default runspeed). The script will also reduce the stamina bar when walkspeed is toggled up to 220. However the stamina system is still cheated, since you can keep walking at 220 even if stamina is zero. Sorry my scripting skill is not good enough to make it work any better than this. If you really don't want to cheat then be sure to toggle back to 140 when the stamina runs out. I've included alternate script lines if you just want to toggle speed without any reduction in stamina. The SHIFT key is still available for sprinting (may be necessary for proper sprint-jumping). Installation directions ======================= If you don't have an AutoExec.cfg file in your doom 3/base folder, just put the included AutoExec.cfg file into the base folder. If you do have an AutoExec.cfg file just copy the following lines into it. set togspeedup 'set pm_walkspeed 220; set pm_staminarate -1; set togspeed vstr togspeeddown' set togspeeddown 'set pm_walkspeed 140; set pm_staminarate 0.75; set togspeed vstr togspeedup' set togspeed 'vstr togspeedup' bind CAPSLOCK 'vstr togspeed' Use these lines instead if you don't want the stamina bar to decrease when toggling run. set togspeedup 'set pm_walkspeed 220; set togspeed vstr togspeeddown' set togspeeddown 'set pm_walkspeed 140; set togspeed vstr togspeedup' set togspeed 'vstr togspeedup' bind CAPSLOCK 'vstr togspeed' Credits ======= Feel free to use this code. You don't even have to credit me. Comments to daredevil_30 atatat yahoo dotdotdot com but I don't check that address much.
There are no comments yet. Be the first!