ValveTime.co.uk | Valve News, Forums, Steam

im fairly new to coding but im familiar with C++
ok... now on to the problem...
Im trying to make it so when you spin the mouse wheel the speed of the RPG changes.. is possible?
i tried this code
Code:
if( MWHEELUP );{
	RPG_SPEED += 10;
}
if( MWHEELDOWN );{
	RPG_SPEED -= 10;
}
but i get syntax errors...

PLZ HELP!
Back
Top