ownage
ownage
this will probably get you banned, and i don't know how to use slower mouse movements. so i wouldn't suggest using this, but i thought i'd give you a basic idea and you can change.
thats it. it will continually cast a spell on the zombie if you click colors right.SCAR Code:program ZombieKiller;
const
ZombieColor =4088199; //set zombie color
SpellBookColor =4940670; //set spell book tab color
SpellColor =131074; //set spell color in example air blast color.
procedure AttackZombie;
var x,y:integer;
begin
if (FindColorSpiral(x,y, ZombieColor,0,0,271,172)) then
begin
if (FindColorSpiral(x,y,SpellBookColor,0,0,647,292)) then
MoveMouseSmooth(x,y)
wait(2000+random(50))
ClickMouse(x,y,true)
end;
end;
procedure CastSpell;
var x,y:integer;
begin
if(FindColorSpiral(x,y,SpellColor,0,0,647,292)) then
begin
MoveMouseSmooth(x,y)
wait(2000+random(50))
ClickMouse(x,y,true)
end;
end;
procedure ClickZombie;
var x,y:integer;
begin
if(findColorSpiral(x,y,ZombieColor,0,0,271,172)) then
begin
MoveMouseSmooth(x,y)
wait(2000+random(25))
ClickMouse(x,y,true)
end;
end;
begin
repeat
AttackZombie;
CastSpell;
ClickZombie;
until(false)
end.
i am new to scripting and this is probably the best i can do for ya![]()
yes please dont use that or you will be banned, but thats pretty good JAD. thanks for helping instead of just leeching from these forums. if you dont want banned in RS2 then ClickMouse and MoveMouseSmooth is a big no no.
try using the SRL procedures Mouse(which moves the mouse to selected spot and clicks)
There are currently 1 users browsing this thread. (0 members and 1 guests)