Author Topic: 100 meter scroll  (Read 7287 times)

Well, if I didn't care about my mouse I'd start the game then proceed to racing my mouse across the floor like a matchbox car.

used a macro and got 2s but apparently it wasn't 2s enough to get on port 'n hack's level ;-;

used a macro and got 2s but apparently it wasn't 2s enough to get on port 'n hack's level ;-;

I got 0.001 seconds (could get 0 if I wanted to too), but when displaying it, it rounds it up to at minimum 2 seconds.

Made it in exactly 40 seconds.

I tried cheating by middle clicking and then moving my mouse down, the screen scrolled but it didn't register me as having moved :c

how the hell do you guys do it so fast

i reached 5 meters after intensively scrolling for 30 seconds then gave up because this is frustratingly unresponsive.

my fastest was .3m/per second
wtf how do you do this

100 meters in 2 minutes
i used that thing you used when you press the scroll button
so it didn't count

« Last Edit: July 27, 2013, 11:04:29 AM by Dreams_Of_Cheese »


my fastest was .3m/per second
wtf how do you do this
what
even I can get up to 4 somewhat easily
nevermind, make that .4
« Last Edit: July 27, 2013, 11:05:19 AM by Mysteroo »

how the hell do you guys do it so fast

i reached 5 meters after intensively scrolling for 30 seconds then gave up because this is frustratingly unresponsive.

   function updatedWheel(e, delta){
      e.stopImmediatePropagation();
      e.preventDefault();
      if(!_allowWheel) return;      
      if(isNaN(delta)) delta = 0;
      if(delta > 10) delta = 10;
      else if(delta < -10) delta = -10;
      _scrolledDelta -= delta * 0.002;
      if(_scrolledDelta < 0) _scrolledDelta = 0;
      engine();
      updateCounter();
      if(_isTouch) return;
      if(_soundOn) _wheelSound.play();
   /*   _allowWheel = false;
      if(dpr > 1) setTimeout(unSuspend, 50); //New MBPro probably
      else setTimeout(unSuspend, 30);*/
      //Play wheel sound
   }


It clamps the scroll delta to [-10, 10], which means if you have a mouse that sends scroll events really slowly but with really high values, you're screwed.



page down doesn't work btw lol