//Auto Dance Party by Ejjman1
//Thanks for all the tuts from people that I've read
//SETUP: Make sure your on the screen with all the emotes on it
//Still have questions?
Dukeof_earlo@yahoo.com
//Version 1.00; Next Version 1.00 (Done)
//Have fun!
program Dancer;
var x,y,counter:integer;
begin
counter:=0;
repeat
MoveMouseSmooth(696+random(28),451+random(16));
GetMousePos(x,y);
ClickMouse(x,y,true);
counter:=counter+1;
writeln('Danced' + Inttostr (counter) + 'times.');
wait(4200+random(500));
until(false)
end.