Results 1 to 7 of 7

Thread: Help Required / Sugguestion

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

    Default Help Required / Sugguestion

    I was trying to make a autoseller ... the below script complied .. the problem is when the mouse did the left click on the item on the first inventory slot it takes forever for it to move to the "sell 50" option.

    Can anyone tell me why ?

    Below is the script ty.




    program Autoseller;
    {.include SRL\SRL.scar}

    procedure Sell;
    begin
    MoveMouse(587,229);
    Wait(300);
    ClickMouse(587,229,False);
    wait (300)
    ClickOption('Sell 50', 2);
    end;

    begin
    repeat Sell;
    until(false)
    end.

  2. #2
    Join Date
    Aug 2007
    Posts
    1,404
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    Try
    SCAR Code:
    ChooseOption('Sell 50')
    instead.

    Also use the procedure "Mouse" (SRL procedure) to move and click the mouse.
    It is extremely undetectable.

    PS: Remember to write "SetupSRL" at the start of your main loop.

    -Knives

  3. #3
    Join Date
    Mar 2007
    Posts
    95
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    maybe change the times from 300 to 200?

  4. #4
    Join Date
    Aug 2006
    Posts
    7
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    tired it still having the same problem

  5. #5
    Join Date
    Aug 2006
    Posts
    7
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    even i change it to wait 10 its still having this problem of moving very slowly to the sell 50 option. Even if i removed the wait .. its still having the same problem too.

    begin
    MoveMouse(587,229);
    Wait(10);
    ClickMouse(587,229, False);
    wait (10);
    ChooseOption('Sell 50');
    end;

  6. #6
    Join Date
    Mar 2007
    Posts
    3,042
    Mentioned
    1 Post(s)
    Quoted
    14 Post(s)

    Default

    Make sure you put SetupSRL; at the beginning of your main loop. That should fix the mousespeed.
    :-)

  7. #7
    Join Date
    Feb 2007
    Location
    Access Violation at 0x00000000
    Posts
    2,865
    Mentioned
    3 Post(s)
    Quoted
    18 Post(s)

    Default

    In Includes\SRL\SRL.scar change MouseSpeed := <number>
    To
    MouseSpeed := somewhere between 1 and 50, 1 is slowest, 50 is superfast, i recommend 20/25 something like that.

    SCAR Code:
    program AutoSeller;
    {.include SRL\SRL.scar}

    var s: Integer;

    const
    MSpeed=20; //Set MouseSpeed here (1 is slowest, 50 Fastest, recommend 20.)
    Sells=100;   //Set here how much times to click 'Sell 50'

    procedure DoTheSell;
    begin
    Mouse(587, 229, 1, 1, false);
    Wait(250+random(500));
    ChooseOption('Sell 50');
    end;

    begin
    SetUpSrl;
    MouseSpeed := MSpeed;
    repeat
    s := s+1
    DoTheSell;
    until(s = Sells)
    end.

    Does that work?
    Ce ne sont que des gueux


Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Required SMART and Option to Pay for Membership
    By iJake in forum SRL Site Discussion
    Replies: 2
    Last Post: 06-01-2008, 11:31 PM
  2. Anti-ban help required.
    By yorkshireknight in forum OSR Help
    Replies: 8
    Last Post: 02-16-2007, 04:40 PM
  3. Help required in tweaking an anti-logout
    By apx900 in forum OSR Help
    Replies: 10
    Last Post: 10-12-2006, 12:54 PM

Posting Permissions

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