Quote:
|
Originally Posted by Angel_Light
I'm just curious, is there a way to make it add and minus speed using the mouse wheel?
|
Try this:
PHP Code:
function onMouseWheel()
{
if (!(this.speed+1 >= 10) && !(this.speed-1 <= 1))
{
this.speed +=- mousewheeldelta;
}
}