Results 1 to 3 of 3

Thread: Is everything up to date

  1. #1
    Join Date
    Sep 2018
    Posts
    2
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default Is everything up to date

    Hey sorry for the beginner questions.

    I haven't been around since the days of SCAR, and in that time I did write a few personal woodcutting scripts and such.

    I have only been around for a few days and have made a basic fletcher that runs fine, but I'm confused as to all the new commands related to simba.

    My main questions are in terms with walking, the minimap, finding mainscreen colors etc.

    I have tried using the aca color revised version, and SPS for walking and can't get either to work, just basic built in functionst functions like finding the banker etc.

    Could someone guide me to an up to date guide, and an up to days SPS (The ones I download have no pictures saved in images folder, maybe that's the issue)?

    Thanks.

  2. #2
    Join Date
    Feb 2015
    Posts
    48
    Mentioned
    0 Post(s)
    Quoted
    12 Post(s)

    Default

    Quote Originally Posted by d1zl32 View Post
    Hey sorry for the beginner questions.

    I haven't been around since the days of SCAR, and in that time I did write a few personal woodcutting scripts and such.

    I have only been around for a few days and have made a basic fletcher that runs fine, but I'm confused as to all the new commands related to simba.

    My main questions are in terms with walking, the minimap, finding mainscreen colors etc.

    I have tried using the aca color revised version, and SPS for walking and can't get either to work, just basic built in functionst functions like finding the banker etc.

    Could someone guide me to an up to date guide, and an up to days SPS (The ones I download have no pictures saved in images folder, maybe that's the issue)?

    Thanks.
    This is an up to date guide on how to script for RS3:
    https://villavu.com/forum/showthread.php?t=107757

    This guide shows how to run ACAv3 as an extension:
    https://villavu.com/forum/showthread...41#post1393141

    The walking & positioning should be covered in the scripting guide for rs3 which i've linked above.

  3. #3
    Join Date
    Sep 2018
    Posts
    2
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    i have read those guides thank you, i wasnt sure considering the one is three years old. im having odd issues with SPS. it wont start walking unless i move the compass a bit either direction then it finds itself.


    I got SPS to work, but finding colors still isnt working using ACA. Tried forcing updates but wont compile.

    Code:
    Error: Unknown declaration "MSX1" at line 38
    Code:
    program new;
    
    {$DEFINE SMART}
    {$i srl-6/srl.simba}
    {$i sps/lib/sps-rs3.simba}
    
    
    procedure Walk();
    var
    MYpath: TPointArray;
    
    
    begin
      MYpath := [[175, 81], [173, 108], [169, 150], [169, 181], [166, 218], [163, 262],
               [156, 302], [149, 343], [138, 382], [129, 414], [123, 441],
               [111, 463], [107, 480], [89, 487], [75, 472]];
    
     WAIT(500);
     if not sps.walkPath(MYPATH)THEN
      begin
        writeLn('walkPath() failed, trying blindWalk()');
        sps.blindWalk(MYpath[high(MYpath)]);
      end;
    
    end;
    
    
    function  magictree : Integer;
    var
      arP: TPointArray;
      arC: TIntegerArray;
      tmpCTS, i, arL: Integer;
    begin
      tmpCTS := GetToleranceSpeed;
      setcolorToleranceSpeed(2);
      SetToleranceSpeed2Modifiers(7.58, 0.89);
    
      if not (FindColorsTolerance(arP, 6709107, MSX1, MSY1, MSX2, MSY2, 5)) then
      begin
        Writeln('Failed to find the color, no result.');
        ColorToleranceSpeed(tmpCTS);
        SetColorSpeed2Modifiers(0.2, 0.2);
        Exit;
      end;
    
      arC := GetColors(arP);
      ClearSameIntegers(arC);
      arL := High(arC);
    
      for i := 0 to arL do
      begin
        Result := arC[i];
        Writeln('AutoColor = ' + IntToStr(arC[i]));
        Break;
      end;
    
      ColorToleranceSpeed(tmpCTS);
      SetColorSpeed2Modifiers(0.2, 0.2);
    
      if (i = arL + 1) then
        Writeln('AutoColor failed in finding the color.');
    end;
    
    
    begin
      clearDebug();
      setupSRL();
      sps.setup('seersfinal', RUNESCAPE_SURFACE);
      magictree(x,y);
    end;
    Last edited by d1zl32; 10-04-2018 at 01:53 PM.

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
  •