Its nothing big, just a small snippet.
Donations will be accepted lolCode:import java.awt.Robot; import java.awt.event.KeyEvent; // by n3ss3s // Only for educational purposes or scrolling. class ScrollBot { public static void main (String [] args) throws Exception { int speed = 500; // Time between a scroll int i = 0; int scrolls = 1000; // How many times to scroll Robot robo = new Robot(); while (!(i == scrolls) { robo.mouseWheel(1); robo.delay(speed); i ++; } } }







Reply With Quote






lol
