Results 1 to 7 of 7

Thread: please help nat script

  1. #1
    Join Date
    Mar 2009
    Posts
    38
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default please help nat script

    im trying to make a script that takes 5 mithril and the rest coal and super heates them puts them back in bank and repeat. ive tryed mmouse, clickmouse,movemouse, but none work i have rev 31 and scar 3.15b

  2. #2
    Join Date
    Feb 2009
    Location
    Philipines
    Posts
    600
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Do not use Clickmouse, Movemouse in RuneScape they are very detectable.
    Last edited by Dark Arcana; 04-11-2009 at 03:36 AM.

  3. #3
    Join Date
    Sep 2007
    Posts
    638
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Since when was Mouse detectable?

    What should he use?


    Make sure you have SetupSRL; in your main loop.

  4. #4
    Join Date
    Mar 2009
    Posts
    38
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    this is what i have so far



    program bank;
    {.include srl/srl.scar}
    begin

    clickmouse(186, 263,1,1,false);
    wait(2000);
    mmouse (136, 333,1,1,true);
    wait(2000);
    mmouse(136, 264,1,1,false);
    wait(2000);
    mmouse(100, 363,1,1,true);
    wait(2000);
    movemouse(488, 35,1,1,true);
    wait(2000);

    end;

    procedure nats;

    begin
    mmouse(716,353,1,1,true);
    wait(2000);
    mmouse(708, 441,1,1,true);
    end;

    Begin
    repeat
    setup SRl;
    bank;
    nats;
    until (LoadsCompleted >= Players[CurrentPlayer].Integers[0]) or (not (LoggedIn));
    LoadsCompleted := 0;
    end.

  5. #5
    Join Date
    Sep 2007
    Posts
    638
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    remove the space in SetupSRL. Then change all of the mouse procedures to just say Mouse;

    You also need the line procedure bank; before your first begin.

    Please post SCAR Scripts in SCAR tags. Surround your script with [SCAR] and [*/SCAR] (without the *)
    Last edited by Aser; 04-11-2009 at 03:34 AM.

  6. #6
    Join Date
    Dec 2008
    Posts
    2,813
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Aser View Post
    Since when was Mouse detectable?

    What should he use?


    Make sure you have SetupSRL; in your main loop.
    read first -.-

    and OP.. your script doesn't make sense =X

    Mouse will move and click.. MMouse just moves..

    that's probably your problem.. and Mouse(0, 0, 0, 0, True); will left click, Mouse(0, 0, 0, 0, False); will right click..

    and for your waits.. do Wait(RandomRange(2500, 5000)); or whatever the wait should be

  7. #7
    Join Date
    Mar 2009
    Posts
    38
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    thanks every 1

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
  •