Results 1 to 3 of 3

Thread: i need help with my silverminer

  1. #1
    Join Date
    Jul 2007
    Posts
    61
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    i need help with my silverminer

    i need help

    it worked with scar 3.6 or what ever it was(the last version)
    and srl 3.18


    now i have scar 3.11 and srl 4.0

    now it wont work.........

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

    Default

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

    var
      x, y: Integer;

    begin
    repeat
     writeln('Inventory = ' + IntToStr(invcount));
     if (FindObj(x, y, 'Min',10790064, 15)) then
       writeln('found object');
       mouse(x, y, 1, 1, true);
       writeln('about to wait');
       wait(5000);
    until(invfull)
    end.

    You don't need to include the other two files - they're included by default. Also, FindObj3 isn't a function (from what I saw), so use FindObj instead. Also, ClickMouse either doesn't work or isn't needed. Mouse takes care of it.
    :-)

  3. #3
    Join Date
    Jul 2007
    Posts
    61
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default thx

    Quote Originally Posted by Metho D View Post
    SCAR Code:
    program New;
    {.include SRL\SRL.scar}

    var
      x, y: Integer;

    begin
    repeat
     writeln('Inventory = ' + IntToStr(invcount));
     if (FindObj(x, y, 'Min',10790064, 15)) then
       writeln('found object');
       mouse(x, y, 1, 1, true);
       writeln('about to wait');
       wait(5000);
    until(invfull)
    end.

    You don't need to include the other two files - they're included by default. Also, FindObj3 isn't a function (from what I saw), so use FindObj instead. Also, ClickMouse either doesn't work or isn't needed. Mouse takes care of it.
    thx

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
  •