Hey, I was just wondering how to make rapid fire "more controllable" so instead it being set at max you can set it to a certain speed. Here's the code for rapid fire, so basically what I'm saying is if there is a way to slow rapid fire down by changing the bytes? Oh and ignore the blabla stuff, it's just to help reduce lag.

Code:
if(GetAsyncKeyState(VK_LBUTTON)<0 && IRapidfire && Status) 
	{
		if( !blabla[0] )
		{
			WriteOpCode((PBYTE)RapidFire, (PBYTE)"\x90\x90", 2);
			blabla[0] = true;
		}
	} else {
		if( blabla[0] )		
		{
			WriteOpCode((PBYTE)RapidFire, (PBYTE)"\x74\x3E", 2);
			blabla[0] = false;
		}
	}