You can contact me at xadrieth@aol.com.
also, here's a bit more cleaned up version of the code above:
#include "DarkGDK.h"
void drawCrosshair(int centerX, int centerY);
void DarkGDK() {
dbSyncOn();
dbSyncRate(60);
dbHideMouse();
while (LoopGDK()) {
dbCLS();
drawCrosshair(dbMouseX(), dbMouseY());
dbSync();
}
return;
}
void drawCrosshair(int centerX, int centerY) {
dbLine(centerX - 5, centerY, centerX + 5, centerY);
dbLine(centerX, centerY - 5, centerX, centerY + 5);
}
With the sprite rollover thingy, other then the one that Ultimate_H stated, could could use dbSpriteHit() or dbPoint().
If you use dbSpriteHit(), you would though need to to load up an image file for the cursor, but if you can do some fancy artwork, you could make a nice looking cursor
http://twewy-fan.com/ <-- The first ever fansite for "The World Ends With You"