mouse sense T1

sublimezg
12-30-2003, 02:09 PM
where is it located in config and whats it called? i cant seem to find it anywhere. Im runnin stripped. thx

random
12-30-2003, 05:44 PM
In Config.cs:

bindAction(mouse0, xaxis0, TO, IDACTION_YAW, Flip, Scale, 0.000924);
bindAction(mouse0, yaxis0, TO, IDACTION_PITCH, Flip, Scale, 0.000924);

You could also copy/paste this into autoexec.cs to find out (similar to CS/Quake sensitivity)

// -=- Sensitivity -=-
function Sensitivity(%nSens){
if (%nSens == "")
echo("Sensitivity is "@floor(Client::getMouseSe nsitivity("playMap.sae")*5000)+1@".");
else{
%rSens=%nSens/5000;
editActionMap("playMap.sae");
bindAction(mouse, xaxis, TO, IDACTION_YAW, scale, %rSens, flip);
if(Client::getMouseYAxisF lip("playMap.sae")=="TRUE")
bindAction(mouse, yaxis, TO, IDACTION_PITCH, scale, %rSens);
else
bindAction(mouse, yaxis, TO, IDACTION_PITCH, scale, %rSens, flip);
echo("Sensitivity changed to "@floor(%nSens)@".");}}

Type sensitivity(); in console to find out what your sensitivity is, or type sensitivity("5"); to set it to 5 or something.

edit: I love how [code] doesn't work.. (or let me have a space between 'how' and '[code]')

sublimezg
12-31-2003, 09:35 PM
yes, but i want to know where its located in the config folder. I've seen/messed with it before but for some stupid reason i cant find it now. Is it in config.cs? It should be right? well it aint there RAWR!

vortex
12-31-2003, 09:50 PM
In Config.cs:

bindAction(mouse0, xaxis0, TO, IDACTION_YAW, Flip, Scale, 0.000924);
bindAction(mouse0, yaxis0, TO, IDACTION_PITCH, Flip, Scale, 0.000924);

sublimezg
01-01-2004, 01:50 PM
ehe thx. i blame add.