Results 1 to 5 of 5

Thread: Dropall;

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

    Default Dropall;

    Hello,
    I'm making scripts on a private server, it runs on the old version.

    I tried doing the Dropall; hoping it would work, but it didn't, it clicked the inventory, then after that the equipments button - I mean tab.

    The tabs look different, so is that the problem?
    And is there a function which might work?

  2. #2
    Join Date
    Nov 2007
    Location
    46696E6C616E64
    Posts
    3,069
    Mentioned
    44 Post(s)
    Quoted
    302 Post(s)

    Default

    Heres a really shitty one, it doesnt need to be fancy for private servers
    SCAR Code:
    procedure DropX;
    begin
    Mouse(580, 229,0, 0, False);
    Wait(150);
    Mouse(580, 275,0, 0, True);
    Wait(150);
    Mouse(624, 230,0, 0, False);
    Wait(150);
    Mouse(624, 275,0, 0, True);
    Wait(150);
    Mouse(664, 227,0, 0, False);
    Wait(150);
    Mouse(664, 275,0, 0, True);
    Wait(150);
    Mouse(705, 228,0, 0, False);
    Wait(150);
    Mouse(705, 275,0, 0, True);
    Wait(150);

    Mouse(580, 270,0, 0, False);
    Wait(150);
    Mouse(580, 315,0, 0, True);
    Wait(150);
    Mouse(624, 270,0, 0, False);
    Wait(150);
    Mouse(624, 315,0, 0, True);
    Wait(150);
    Mouse(664, 270,0, 0, False);
    Wait(150);
    Mouse(664, 315,0, 0, True);
    Wait(150);
    Mouse(705, 270,0, 0, False);
    Wait(150);
    Mouse(705, 315,0, 0, True);
    Wait(150);

    Mouse(580, 302,0, 0, False);
    Wait(150);
    Mouse(580, 345,0, 0, True);
    Wait(150);
    Mouse(624, 302,0, 0, False);
    Wait(150);
    Mouse(624, 345,0, 0, True);
    Wait(150);
    Mouse(664, 302,0, 0, False);
    Wait(150);
    Mouse(664, 345,0, 0, True);
    Wait(150);
    Mouse(705, 302,0, 0, False);
    Wait(150);
    Mouse(705, 345,0, 0, True);
    Wait(150);

    Mouse(580, 340,0, 0, False);
    Wait(150);
    Mouse(580, 385,0, 0, True);
    Wait(150);
    Mouse(624, 340,0, 0, False);
    Wait(150);
    Mouse(624, 385,0, 0, True);
    Wait(150);
    Mouse(664, 340,0, 0, False);
    Wait(150);
    Mouse(664, 385,0, 0, True);
    Wait(150);
    Mouse(705, 340,0, 0, False);
    Wait(150);
    Mouse(705, 385,0, 0, True);
    Wait(150);

    Mouse(580, 371,0, 0, False);
    Wait(150);
    Mouse(580, 415,0, 0, True);
    Wait(150);
    Mouse(624, 371,0, 0, False);
    Wait(150);
    Mouse(624, 415,0, 0, True);
    Wait(150);
    Mouse(664, 371,0, 0, False);
    Wait(150);
    Mouse(664, 415,0, 0, True);
    Wait(150);
    Mouse(705, 371,0, 0, False);
    Wait(150);
    Mouse(705, 415,0, 0, True);
    Wait(150);

    Mouse(580, 410,0, 0, False);
    Wait(150);
    Mouse(580, 455,0, 0, True);
    Wait(150);
    Mouse(624, 410,0, 0, False);
    Wait(150);
    Mouse(624, 455,0, 0, True);
    Wait(150);
    Mouse(664, 410,0, 0, False);
    Wait(150);
    Mouse(664, 455,0, 0, True);
    Wait(150);
    Mouse(705, 410,0, 0, False);
    Wait(150);
    Mouse(705, 455,0, 0, True);
    Wait(150);

    Mouse(580, 445,0, 0, False);
    Wait(150);
    Mouse(580, 455,0, 0, True);
    Wait(150);
    Mouse(624, 445,0, 0, False);
    Wait(150);
    Mouse(624, 455,0, 0, True);
    Wait(150);
    Mouse(664, 445,0, 0, False);
    Wait(150);
    Mouse(664, 455,0, 0, True);
    Wait(150);
    Mouse(705, 445,0, 0, False);
    Wait(150);
    Mouse(705, 455,0, 0, True);
    Wait(150);
    end;
    There used to be something meaningful here.

  3. #3
    Join Date
    Jul 2007
    Location
    Right now? Chair.
    Posts
    8,488
    Mentioned
    3 Post(s)
    Quoted
    12 Post(s)

    Default

    Quote Originally Posted by mysterious123 View Post
    Hello,
    I'm making scripts on a private server, it runs on the old version.

    I tried doing the Dropall; hoping it would work, but it didn't, it clicked the inventory, then after that the equipments button - I mean tab.

    The tabs look different, so is that the problem?
    And is there a function which might work?
    Find out from which date the private server is.
    ie. RS from 15 Nov 2009 server.

    Find the version of SRL from that date. (Should be easy enough to check the revisions from release date)

    Use that version

    @Frement: Dude, loop.

    ~RM

    I & I know Zion. It is in the spirit, body and mind of every one of us
    RMouse(obj: TMSIObject): boolean;

  4. #4
    Join Date
    Nov 2007
    Location
    46696E6C616E64
    Posts
    3,069
    Mentioned
    44 Post(s)
    Quoted
    302 Post(s)

    Default

    Quote Originally Posted by Rasta Magician View Post
    @Frement: Dude, loop.
    I didnt want to spend that much time on a private server, but yeah, it could have been done more neatly, but atleast that works

    And one more thing for mysterious123, use Simba, it has amazing OCR that works on the private server i play on.
    There used to be something meaningful here.

  5. #5
    Join Date
    Nov 2006
    Posts
    181
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Frement View Post
    I didnt want to spend that much time on a private server, but yeah, it could have been done more neatly, but atleast that works

    And one more thing for mysterious123, use Simba, it has amazing OCR that works on the private server i play on.
    I didn't get a chance to ask, I tried using Simba, though I couldn't ever get it to work for some reason. Maybe the update didn't work, maybe I don't know how to get a script to work with it...

    Basically, I need someone to help me figure what the problem is. But I really have no time.
    I only managed to script a cowkiller for the private server, luckily, it worked all night and all day... Though for RS, I'd have to try much harder. That's also why I took a break from RS.

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
  •