im trying to make a sript to collect all the runes at dark warrior's fortrees,
could sum1 make this script or help me with it, if sum1 could make it then i want the script to be like this: u collect all the runes at dark warriors fortrees,
if u get attacked by sum1 then u tele, law rune to tele can be anywhere in inventory... well this si the script... i started it out a little...


SCAR Code:
program rune collector;

var x,y: Integer;

const
BodyRune= 13639704;//Color of body rune
ChaosRune= 14803428;//Color of chaos rune
MindRune= 7763583;//Color of mind rune
FireRune= 9145495;//Color of fire rune
WaterRune= 11016981;//Color of water rune
AirRune= 14803428;//Color of air rune
EarthRune= 8026756;//Color of air rune

begin
  If(FindColor(x,y,BodyRune,0,0,600,600)) then
  MoveMouseSmoothEx(x,y +random(0),20,40,45,25,20);
  Wait(1000+random(100));
  ClickMouse(x,y,true);
end.