Results 1 to 15 of 15

Thread: need help with my auto seller

  1. #1
    Join Date
    Apr 2008
    Posts
    86
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default need help with my auto seller

    hey im making a script to sell bulk items like arrows its realy basic all it (is sposed to do) does right click on first inventory slot and press sell 50,

    problem is that it is missing the item that is in the first slot and that some items have longer names than others wich changes where the script should click,

    at the moment all i am using is movemouse and click mouse like i said its very basic

    anyway is there away i can make it look for "sell50"?
    and im not sure what to do about it missing

    will rep anyone who helps

  2. #2
    Join Date
    Nov 2007
    Location
    The Netherlands
    Posts
    1,490
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    1. dont use clickmouse and move mouse... use mouse and mmouse
    2. you can use coordinates (with the color picker) , than add random:
    something like this:

    mmouse(x,y(coordinates));// hovers mouse
    wait(1000+random(300));
    mouse(x,y(coordinates),false); // right clicks the item
    wait(500+random(200));
    ChooseOption('X'); // will click sell x
    EnterAmount('number here');// will enter the ammount to sell

    i hope i helped you

  3. #3
    Join Date
    Apr 2008
    Posts
    86
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by pvh View Post
    1. dont use clickmouse and move mouse... use mouse and mmouse
    2. you can use coordinates (with the color picker) , than add random:
    something like this:

    mmouse(x,y(coordinates));// hovers mouse
    wait(1000+random(300));
    mouse(x,y(coordinates),false); // right clicks the item
    wait(500+random(200));
    ChooseOption('X'); // will click sell x
    EnterAmount('number here');// will enter the ammount to sell

    i hope i helped you
    what is the "mouse" one i've found mmouse but dont know what the other one is

    this is my script
    SCAR Code:
    program BulkItemSeller;

    procedure item;
    begin
    MoveMouse(698+random(2),470-random(10));
    ClickMouse(698,470,false);

    end;

    procedure sellitem;
    begin
      item;
      wait(500)
     MoveMouse(676,553);
     wait(500);
      ClickMouse(676,553,true);
    end;

    begin
     item;
      sellitem;

    end.

  4. #4
    Join Date
    Apr 2007
    Posts
    994
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    procedure MMouse(x, y, rx, ry: integer);
    By: Benland100
    Description:
    Moves the mouse.


    procedure Mouse(mousex, mousey, ranx, rany: Integer; left: Boolean);
    By: Mutant Squirrle
    Description:
    Moves then clicks mouse.

    function ChooseOption(txt: String): Boolean;
    By: Wizzup?
    Description:
    Finds Popup menu, then clicks on it.

    Use the above three.
    Oh and,

    procedure TypeSend(Text: string);
    By: SKy Scripter
    Description:
    Sends human like text.

    Try reading your srl manual include in the srl includes folder.

    [QUOTE]<GoF`> oh no its Raymooond
    <Raymooond> Heya
    <GoF`> is it ray or some other ray?
    <LeeLokHin> No idea
    <LeeLokHin> Raymond, what's the game you like the most?
    <Raymooond> Runescape
    <-- LeeLokHin has kicked Raymooond from #srl (Faker.)[/QUOTE]

  5. #5
    Join Date
    Apr 2008
    Posts
    86
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by leelokhin View Post
    procedure MMouse(x, y, rx, ry: integer);
    By: Benland100
    Description:
    Moves the mouse.


    procedure Mouse(mousex, mousey, ranx, rany: Integer; left: Boolean);
    By: Mutant Squirrle
    Description:
    Moves then clicks mouse.

    function ChooseOption(txt: String): Boolean;
    By: Wizzup?
    Description:
    Finds Popup menu, then clicks on it.

    Use the above three.
    Oh and,

    procedure TypeSend(Text: string);
    By: SKy Scripter
    Description:
    Sends human like text.

    Try reading your srl manual include in the srl includes folder.


    lol i've been trying to read the includes themselves must be why i cant understand them

  6. #6
    Join Date
    Apr 2008
    Posts
    86
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    i still dont realy understand,

    how do i set up the MMouse and the mouse

    sorry im such a noob

  7. #7
    Join Date
    Nov 2007
    Location
    The Netherlands
    Posts
    1,490
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    i fixed it now
    SCAR Code:
    program BulkItemSeller;
    {.include SRL/SRL.scar}

    procedure HoverItem;     //By PvH
    begin
      mmouse(698,470,2,2);//this hovers the item with random
      wait(1000+random(300)); // waits to look more human
    end;

    procedure sellitem;       // By PvH
    begin
      mouse(698,470,2,2,false); //right clicks the item
      wait(500+random(200));   // waits to look more human
      ChooseOption('All'); // will sell all
      writeln('We sold everything!');
    end;

    begin // by PvH
      SetupSRL;
      Activateclient;
      HoverItem;
      sellitem;
    end.

    thats it^^

  8. #8
    Join Date
    Apr 2008
    Posts
    86
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by pvh View Post
    i fixed it now
    SCAR Code:
    program BulkItemSeller;
    {.include SRL/SRL.scar}

    procedure HoverItem;     //By PvH
    begin
      mmouse(698,470,2,2);//this hovers the item with random
      wait(1000+random(300)); // waits to look more human
    end;

    procedure sellitem;       // By PvH
    begin
      mouse(698,470,2,2,false); //right clicks the item
      wait(500+random(200));   // waits to look more human
      ChooseOption('All'); // will sell all
      writeln('We sold everything!');
    end;

    begin // by PvH
      SetupSRL;
      Activateclient;
      HoverItem;
      sellitem;
    end.

    thats it^^

    cool thanks, allthough i cant says its my first script now, never mind repp++for you

  9. #9
    Join Date
    Nov 2007
    Location
    The Netherlands
    Posts
    1,490
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    im still waiting for my rep.. lol
    i suggest you visiting the tutorial section and/or visiting srl wiki
    learn the basics of scripting and create this script again
    i made this is like 30 seconds..
    so if you read some tuts.. it should not be hard
    good luck!

  10. #10
    Join Date
    Apr 2008
    Posts
    86
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by pvh View Post
    im still waiting for my rep.. lol
    i suggest you visiting the tutorial section and/or visiting srl wiki
    learn the basics of scripting and create this script again
    i made this is like 30 seconds..
    so if you read some tuts.. it should not be hard
    good luck!
    cool im following torrent of flames powerminer tut at the mo trying to make one of them

    i did rep you but i did it on another post

  11. #11
    Join Date
    Nov 2007
    Location
    The Netherlands
    Posts
    1,490
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    thats wierd.. i still got 14 rep :S

  12. #12
    Join Date
    Apr 2008
    Posts
    86
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by pvh View Post
    thats wierd.. i still got 14 rep :S
    it was on your need help with odjcustom or something like that

  13. #13
    Join Date
    Nov 2007
    Location
    The Netherlands
    Posts
    1,490
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    i saw that.. there is a message of rep.. but there wasnt rep added to my total :s
    thanks anyway!

  14. #14
    Join Date
    Apr 2007
    Location
    Perth, Australia
    Posts
    3,926
    Mentioned
    3 Post(s)
    Quoted
    2 Post(s)

    Default

    Quote Originally Posted by pvh View Post
    i saw that.. there is a message of rep.. but there wasnt rep added to my total :s
    thanks anyway!
    Registered members don't affect your rep I don't think. I'm not sure about Juniors either.

  15. #15
    Join Date
    Mar 2007
    Posts
    4,810
    Mentioned
    3 Post(s)
    Quoted
    3 Post(s)

    Default

    no they do, Zeph.
    The square is blue because you need to give out some rep aswell.

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Auto note seller.
    By jakeyboy29 in forum RS3 Outdated / Broken Scripts
    Replies: 7
    Last Post: 01-17-2009, 04:41 PM
  2. Karjama Auto seller
    By hellian46 in forum RS3 Outdated / Broken Scripts
    Replies: 1
    Last Post: 10-26-2008, 12:34 AM
  3. Need a Auto Seller
    By aznpimpsturr in forum RS3 Outdated / Broken Scripts
    Replies: 4
    Last Post: 06-06-2008, 04:56 AM
  4. Need Help With My Auto-Seller/Buyer
    By F1r3Fox in forum OSR Help
    Replies: 7
    Last Post: 09-16-2007, 09:03 PM
  5. Remminton Auto Oak Cutter And Seller
    By SmAcKmE in forum RS3 Outdated / Broken Scripts
    Replies: 9
    Last Post: 07-28-2007, 10:51 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
  •