Results 1 to 2 of 2

Thread: i need help with this script!

  1. #1
    Join Date
    Jun 2007
    Posts
    3
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default i need help with this script!

    im trying to make a script 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 warrior's fortrees, if u get attacked by sum1 then u tele, law rune to tele can be anywhere in inventory... well this is the script... i started it out a little...

    move it to the script request forum mods and srry for the double post...


    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.

  2. #2
    Join Date
    Mar 2007
    Posts
    3,116
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    Never use MoveMouseSmooth and clickmouse use mouse instead. heres your fixed script
    SCAR Code:
    program runecollector;
    {.include SRL/SRL.scar}

    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
      Mouse(x, y, 2, 2, True);
    end.
    Any more questions pm me.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •