Results 1 to 4 of 4

Thread: Help!!!

  1. #1
    Join Date
    Oct 2007
    Posts
    742
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Help!!!

    Hey, i need to know something about the srl rev.10.

    Whats the new drop procedure? I remember it was DropToPosition just yesterday... What is it now?
    Woot woot.

  2. #2
    Join Date
    Dec 2007
    Posts
    103
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Well, you could use DropItem with a for-loop.
    SCAR Code:
    For i := 0 To endPos Do
    DropItem(i);
    This sentence is false.

  3. #3
    Join Date
    Dec 2006
    Location
    Sydney, New South Wales, Australia
    Posts
    4,603
    Mentioned
    15 Post(s)
    Quoted
    42 Post(s)

    Default

    I don't know why they removed it. But here is a custom made one by me:
    SCAR Code:
    function DropToPosition(StartPosition, EndPosition: Integer): Integer;
    var l, m: Integer;
    begin
      for l:=StartPosition to EndPosition do
      begin
        MouseItem(l, False);
        Wait(50+Random(50));
        ChooseOption('rop');
        Wait(30+Random(80));
      end;
    end;
    Well, you know how to fill it out.
    You may contact me with any concerns you have.
    Are you a victim of harassment? Please notify me or any other staff member.

    | SRL Community Rules | SRL Live Help & Chat | Setting up Simba | F.A.Q's |

  4. #4
    Join Date
    Dec 2006
    Location
    Copy pastin to my C#
    Posts
    3,788
    Mentioned
    8 Post(s)
    Quoted
    29 Post(s)

    Default

    IP

    a) You haven't used the variable m
    b) You haven't used the result variable
    c) Was your purpose to count how many it dropped and result m?

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
  •