
-----------------------------------
0x8000
Sun Jun 18, 2006 8:06 pm

Preload settings from text file?
-----------------------------------
Okay I have this program (code below), and basically it just makes the cursor move down when you press mouse1, you can adjust the speed with #include 
#include 
#define VK_OEM_PLUS 0xBB
#define VK_OEM_MINUS 0xBD
#define VK_OEM_4 0xDB
#define VK_OEM_6 0xDD
//defines keys PLUS, MINUS, ], and [

using namespace std;
static int time_effector = 1;
static int pixel_effector = 0;
//declares integers that makes how much moving-downwards to produce

int main()

{
std::cout 