Adblock breaks this site

instead of clickmouse movemouse?

Discussion in 'Scar/Simba Help' started by strongman, Sep 28, 2007.

  1. strongman

    strongman Member

    Joined:
    Apr 9, 2007
    Posts:
    94
    Referrals:
    0
    Sythe Gold:
    0
    instead of clickmouse movemouse?

    what can i use instead of movemouse and clickmouse because those things can get u banned easily?
     
  2. Town

    Town Grand Master
    Scar Programmers

    Joined:
    Jan 21, 2007
    Posts:
    3,776
    Referrals:
    3
    Sythe Gold:
    5
    instead of clickmouse movemouse?

    MMouse and Mouse using the SRL which use HoldMouse and ReleaseMouse.
     
  3. strongman

    strongman Member

    Joined:
    Apr 9, 2007
    Posts:
    94
    Referrals:
    0
    Sythe Gold:
    0
    instead of clickmouse movemouse?

    Line 32: [Error] (57:1): Duplicate identifier '' in script C:\Program Files\SCAR 3.06\includes\SRL/SRL/Core/Globals.scar

    That is the error i get if i use SRL and i downloaded srl 4.0 because i have SCAR divi CDE

    btw can u help answer my other post plz town? " If i cant, do it again"


    and what does mmouse uses hold and release?, and mouse uses movemouse?
     
  4. Town

    Town Grand Master
    Scar Programmers

    Joined:
    Jan 21, 2007
    Posts:
    3,776
    Referrals:
    3
    Sythe Gold:
    5
    instead of clickmouse movemouse?

    MMouse moves the mouse.

    Mouse uses MMouse and then uses HoldMouse and Clickmouse.

    You're trying to use SRL 4.0 on Scar 3.06 which is giving you that error, download Scar 3.12 from www.freddy1990.com.
     
  5. killer turky

    killer turky Guest

    Referrals:
    0
    instead of clickmouse movemouse?

    Well..u could make a procedure like this

    Procedure click;
    begin
    getmousepos(x,y) ;
    HoldMouse(x, y, true);
    Wait(500 + Random(50));
    ReleaseMouse(x, y, true);
    Wait(400 + Random(100));
    end;

    and when u want to click somthing on something just do

    findcolor(x,y,whatever,0,0,100,100);
    movemousesmooth(x,y);
    click;

    And if u also have to right click you could make another procedure like this

    Procedure click2;
    begin
    getmousepos(x,y) ;
    HoldMouse(x, y, false);
    Wait(500 + Random(50));
    ReleaseMouse(x, y, false);
    Wait(400 + Random(100));
    end;

    and when u have to right click use this instead

    findcolor(x,y,whatever,0,0,100,100);
    movemousesmooth(x,y);
    click2;

    Thats if u dont have srl or dont want to use it...it'll work on regular scar
     
< Help? | ahh end of runescape!!!!!!!!!!!!!!!!!!!!!! >


 
 
Adblock breaks this site