View Full Version : Dance Party---2nd Script!


Ejjman1
04-24-2006, 11:39 PM
Here it is...

//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.

I don't know how I can let you upload it because I'm still learning. Enjoy!
PS...I couldn't think of anything else that wasn't too hard for me lol.

phantombmx
04-25-2006, 03:21 PM
try using srl include which just put {.include SRL\SRL.scar} and download the include and stuff.. then use Mouse(x,y,ranx,rany:integer; left:boolean); this will move and click... cool simple script :)

c0de
04-25-2006, 04:19 PM
again, wrong section, this is for SRL scripts, there is separate section for non srl scripts.

and try to use standards
:)