Results 1 to 3 of 3

Thread: need help :-\

  1. #1
    Join Date
    Dec 2006
    Posts
    1
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default need help :-\

    ownage

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

    Default

    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.
    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.
    thats it. it will continually cast a spell on the zombie if you click colors right.
    i am new to scripting and this is probably the best i can do for ya

  3. #3
    Join Date
    Jun 2006
    Location
    Tennessee, USA
    Posts
    2,603
    Mentioned
    1 Post(s)
    Quoted
    46 Post(s)

    Default

    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)

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
  •