Results 1 to 3 of 3

Thread: Soulsplit client detecting issues

  1. #1
    Join Date
    Jan 2016
    Posts
    3
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default Soulsplit client detecting issues

    I am trying to run the following script I just started and dont really know why it is not working.
    Code:
    Program ChopTree;
    {$i srl-6/srl.simba}
    Procedure ClickTree;
    var
      X,Y:Integer;
    begin
      if FindColorTolerance(X, Y, 10336, 277, 169, 326, 218, 5) then
      begin
        mmouse(X, Y,1,1);
        wait(250);
        ClickMouse(X, Y, mouse_Left)
      end;
    end;
    Begin
    MouseSpeed := 15;
    SetupSRL;
    end.
    but then I get the following error.
    Code:
    SRL: Logfile = C:\Simba\Includes\SRL-6/logs/SRL log (25-01-16 at 08.44.29 PM).txt
    -- setupSRL()
    ---- Setting up SRL...
    ---- HINT: You are not using SMART, be sure to use Simba's crosshairs to select the RS client.
    ---- Waiting up to 5 minutes for RS to load...
    does anyone know how to fix this so it does detect my soulsplit client

  2. #2
    Join Date
    Jun 2013
    Location
    Scranton
    Posts
    496
    Mentioned
    5 Post(s)
    Quoted
    220 Post(s)

    Default

    You're using the srl-6 include, and it can't really auto detects a rsps client. You have to target the client with the crosshairs. Replace {$i srl-6/srl.simba} with {$i srl/srl.simba}. Also that script will compile but won't do anything. There are no procedures/functions in your mainloop at the bottom. I think this thread is what you are going for https://villavu.com/forum/showthread.php?t=94909

  3. #3
    Join Date
    Mar 2014
    Posts
    195
    Mentioned
    4 Post(s)
    Quoted
    92 Post(s)

    Default

    Post this at the top of you script. Should fix that problem. Don't forget to select it with the crosshairs.
    Simba Code:
    function waitClientReady(): boolean;override;
    begin
     result:= true;
    end;

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
  •