I was messing around and i made a RSclassic auto-fighter, kinda buggy..but it works
//RsClassic L33t Fighter 1.0 by Thiefmn6092 and Motnahp
//Instructions---
//fill in the required spaces
//Select client window
//make sure your logged in and near the monsters you wanna kill(don't fight somthing to hard, we dont have a eat food procedure yet)
//Run and go eat some popcorn : )
program leetFighter;
//Setup-------------------------------------------|
const // |
username='your username'; // |
password='your password'; // |
MonsterColor=7159865; // |
randomtext1='hurgadurga'; // |
randomtext2='wow, im freaken bored'; // |
//End of setup------------------------------------|
var
x,y: Integer;
procedure thanks;
begin
writeln('<===============================>');
writeln(' -Thanks for using l33t Fighter-');
writeln(' -Thiefmn6092 and Motnahp-');
writeln('<===============================>');
end;
procedure FindNPC;
begin
status('finding NPC, Please Wait');
if(findcolor(x,y,MonsterColor,145,117,651,445))then
writeln('Monster Found, Now going to attack procedure')
end;
Procedure AttackNPC;
begin
if(findcolor(x,y,MonsterColor,145,117,651,445))then
MoveMouseSmooth(x,y);
Wait(350);
ClickMouse(x,y,true);
wait(450);
MoveMouseSmooth(87,65);
wait(4440);
ClickMouse(87,65,true);
end;
begin
thanks;
wait(500);
findNPC;
wait(350);
attackNPC
end.