Page 3 of 7 FirstFirst 12345 ... LastLast
Results 51 to 75 of 171

Thread: [NEED TESTING!] SPS-OSR (2007Scape)

  1. #51
    Join Date
    Jul 2012
    Posts
    113
    Mentioned
    7 Post(s)
    Quoted
    34 Post(s)

    Default

    As of 3/27/2013 DegreeFix has been updated to use SPS_GetMyPos rather than use only with SPS_WalkPath!
    What this means for you, the user:
    Depending on where you are setting up your walking to work, you may want to change the match percentages + tolerances a bit. I've found that .4 (for match percentage) is generally good for cities and things, while .5 or .6 would be best for areas that have a lot of grass and empty spaces. You can change the match percentage with the SPS_MatchesPercent global variable. The default is .4 or 40%, but the higher you can get without breaking your walking, the better. This is because we are trying to avoid false positives which would lead to an incorrect coordinate.

    Note that the percentages/tolerance can be a bit touchy depending on your walking location, but 07 sps isn't exactly easy to do.
    If you would like to debug the DegreeFix offset or current matchespercent, uncomment lines 374 and 407 in sps-osr.simba.
    Updated Download: Attachment 20288

  2. #52
    Join Date
    Mar 2006
    Location
    Belgium
    Posts
    3,564
    Mentioned
    111 Post(s)
    Quoted
    1475 Post(s)

    Default

    Quote Originally Posted by SeanStar View Post
    Updated Download: Attachment 20288
    Nice work mate, will give it a go tomorrow.

    Creds to DannyRS for this wonderful sig!

  3. #53
    Join Date
    Dec 2011
    Posts
    164
    Mentioned
    4 Post(s)
    Quoted
    23 Post(s)

    Default

    Nice, don't know if this is an issue with the update, but I've noticed that the script waits to get to a flag before walking again. It seems like FFlag is missing (Or whatever traditional SPS uses to walk constantly)

    Otherwise, very nice job, seems to be getting more reliable!

  4. #54
    Join Date
    Feb 2013
    Posts
    3
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Hey guys,

    I'm getting this when running the test script.

    Code:
    [Error] C:\Simba\Includes\SRL-OSR/SRL/misc/SmartParams.Simba(229:203): Invalid number of parameters at line 228
    Compiling failed.
    [Error] C:\Simba\Includes\SRL-OSR/SRL/misc/SmartParams.Simba(229:203): Invalid number of parameters at line 228
    Compiling failed.
    Any suggestions on how to fix this?

  5. #55
    Join Date
    Dec 2011
    Posts
    170
    Mentioned
    0 Post(s)
    Quoted
    37 Post(s)

    Default

    I think the issue with SPS is more so due to the map, but I might be wrong.

    Quote Originally Posted by justaddictonpc View Post
    Hey guys,

    I'm getting this when running the test script.

    Code:
    [Error] C:\Simba\Includes\SRL-OSR/SRL/misc/SmartParams.Simba(229:203): Invalid number of parameters at line 228
    Compiling failed.
    [Error] C:\Simba\Includes\SRL-OSR/SRL/misc/SmartParams.Simba(229:203): Invalid number of parameters at line 228
    Compiling failed.
    Any suggestions on how to fix this?

    You need to use smart 8.
    Install smart 8 from the forums here and enable it in the script.
    {$DEFINE SMART8}

  6. #56
    Join Date
    Mar 2013
    Posts
    11
    Mentioned
    0 Post(s)
    Quoted
    4 Post(s)

    Default

    [Error] C:\Simba\Includes\SRL-OSR/SRL/misc/SmartParams.Simba(229:203): Invalid number of parameters at line 228
    Compiling failed.

    What to do now?

  7. #57
    Join Date
    May 2012
    Posts
    27
    Mentioned
    0 Post(s)
    Quoted
    6 Post(s)

    Default

    SPS_GetArea ERROR: Exception: Error while reading stream: File "C:\Simba\Includes\SPS\img\runescape_surface07\6_6 .png" does not exist
    SPS_MergeAreas ERROR: Exception: You are accessing an invalid point, (0,0) at bitmap[5]
    Error: Exception: Access violation at line 398
    The following DTMs were not freed: [SRL - Lamp bitmap, SRL - Book of Knowledge]
    The following bitmaps were not freed: [SRL - Mod bitmap, SRL - Admin bitmap, SRL - Minimap Mask bitmap, 4, 6, 9]
    please help me lol...

  8. #58
    Join Date
    May 2012
    Posts
    27
    Mentioned
    0 Post(s)
    Quoted
    6 Post(s)

    Default

    i did everything trying to run this script
    Simba Code:
    program cFlax;
    {$DEFINE SMART}
    {$I SRL-OSR/SRL.Simba}
    {$I SPS/sps-osr.simba}

    Const
    Lagg = 2000; //Change To Adjust Wait Time To Make Up For Your Lag
    FlaxPrice = 50; //Change To The Ammount You Will Be Selling The Flax For
    FlaxCol = 15131288;
    BankCol = 8229016;
    AntiFreq = 20; //The Lower, the More Antiban
    Version = '1.4';
    var
    MyLoc: TPoint;
    PBox: TBox;
    secs,mins,hours,Tot,x,y,rand,Inv,FlaxPicked : Integer ;
    MonPerHour,MoneyMade :Extended;
    Procedure DeclarePlayers;
    Begin
      HowManyPlayers := 1;
      NumberOfPlayers(HowManyPlayers);
      CurrentPlayer := 0;

       Players[0].Name := '';  //Enter Username
       Players[0].Pass :='';                 //Enter Password
       Players[0].Nick :='';                         //Enter Nick
       Players[0].Active:=True;
    End;

    Procedure BankItems;

    var
    x,y: integer;

    begin
    MakeCompass(0);
    repeat
    if FindObj(x, y, 'ank' , BankCol, 2) then
    begin
    MMouse(x,y,5,5);
    ClickMouse(x,y,1);
    wait(Lagg);
    end;
    until(BankScreen)
    //writeln('We Have Found A Bank')
    wait(Lagg/2);
    DepositAll;
    FlaxPicked := FlaxPicked + 28;
    //writeln('We Have Finished Banking')

    CloseBank;
    end;
    Procedure ToField;
    begin
    MakeCompass(180);
    SPS_AnyAngle := True;
     SPS_Setup(runescape_surface, ['6_6', '6_7']);
    SetRun(True)

      MyLoc := sps_getMyPos;
      //Writeln('SPS returns ' + inttostr(myloc.x) + ',' + inttostr(myloc.y));
     SPS_WalkPath([Point(2720, 2711), Point(2723, 2717), Point(2724, 2728), Point(2726, 2737), Point(2729, 2747), Point(2729, 2755), Point(2726, 2761), Point(2731, 2769), Point(2732, 2779), Point(2734, 2791), Point(2734, 2800), Point(2736, 2811), Point(2738, 2822), Point(2740, 2832), Point(2739, 2839), Point(2742, 2849), Point(2745, 2857), Point(2748, 2865), Point(2752, 2874), Point(2753, 2887), Point(2755, 2897), Point(2760, 2906), Point(2771, 2911), Point(2776, 2918), Point(2785, 2920), Point(2796, 2921), Point(2805, 2921), Point(2810, 2916), Point(2810, 2909), Point(2810, 2901), Point(2809, 2894), Point(2806, 2891), Point(2799, 2885), Point(2792, 2883), Point(2784, 2886), Point(2783, 2891), Point(2783, 2899), Point(2783, 2907), Point(2790, 2910), Point(2800, 2910), Point(2799, 2900), Point(2795, 2897), Point(2793, 2897), Point(2791, 2899), Point(2781, 2880)]);
     MyLoc := sps_getMyPos;
      //Writeln('SPS returns ' + inttostr(myloc.x) + ',' + inttostr(myloc.y));
     end;
    Procedure ToBank;
    begin
    MakeCompass(180);
    SPS_AnyAngle := True;
     SPS_Setup(runescape_surface, ['6_6', '6_7']);
      SetRun(True)
      MyLoc := sps_getMyPos;
      //Writeln('SPS returns ' + inttostr(myloc.x) + ',' + inttostr(myloc.y));
     SPS_WalkPath([Point(2781, 2880), Point(2791, 2899), Point(2793, 2897), Point(2795, 2897), Point(2799, 2900), Point(2800, 2910), Point(2790, 2910), Point(2783, 2907), Point(2783, 2899), Point(2783, 2891), Point(2784, 2886), Point(2792, 2883), Point(2799, 2885), Point(2806, 2891), Point(2809, 2894), Point(2810, 2901), Point(2810, 2909), Point(2810, 2916), Point(2805, 2921), Point(2796, 2921), Point(2785, 2920), Point(2776, 2918), Point(2771, 2911), Point(2760, 2906), Point(2755, 2897), Point(2753, 2887), Point(2752, 2874), Point(2748, 2865), Point(2745, 2857), Point(2742, 2849), Point(2739, 2839), Point(2740, 2832), Point(2738, 2822), Point(2736, 2811), Point(2734, 2800), Point(2734, 2791), Point(2732, 2779), Point(2731, 2769), Point(2726, 2761), Point(2729, 2755), Point(2729, 2747), Point(2726, 2737), Point(2724, 2728), Point(2723, 2717), Point(2720, 2711)]);
     MyLoc := sps_getMyPos;
      //Writeln('SPS returns ' + inttostr(myloc.x) + ',' + inttostr(myloc.y));
     end;

    function FindFlax(var fx, fy: Integer): Boolean;
    var
      arP: TPointArray;
      ararP: T2DPointArray;
      tmpCTS, i, arL: Integer;
      P: TPoint;
    begin
      tmpCTS := GetColorToleranceSpeed;
      ColorToleranceSpeed(2);
      SetColorSpeed2Modifiers(0.29, 0.85);

      if not(FindColorsTolerance(arP, 6399256, MSX1, MSY1, MSX2, MSY2, 30)) then
      begin
        ColorToleranceSpeed(tmpCTS);
        SetColorSpeed2Modifiers(0.2, 0.2);
        Exit;
      end;

      SortTPAFrom(arP, Point(MSCX, MSCY));
      ararP := SplitTPAEx(arP, 10, 10);
      arL := High(ararP);

      for i := 0 to arL do
      begin
        P := MiddleTPA(ararP[i]);
        MMouse(P.x, P.y, 5, 5);
        Wait(100 + Random(100));
        if (IsUpText('lax')) then
        begin;
          Result := True;
          Break;
        end;
      end;

      ColorToleranceSpeed(tmpCTS);
      SetColorSpeed2Modifiers(0.2, 0.2);

      if (i = arL + 1) then
      begin
        Exit;
      end;

      GetMousePos(fx, fy);
    end;

    Function Antiban: Boolean;
    begin
      case random(2) of
      //1: HoverSkill('strength', false);
      1: MakeCompass(RandomRange(0,359));

      end;
    end;

    procedure Proggy;


    begin
     ClearDebug;
     ConvertTime(GetTimeRunning,hours,mins,secs);
    MoneyMade := FlaxPicked * FlaxPrice / 1000;
    MonPerHour := MoneyMade * 3600000  / GetTimeRunning;
    WriteLn('         cFlax Version: '+Version);
    WriteLn('         ');
    WriteLn('         FlaxPicked: ' + intToStr(FlaxPicked));
    WriteLn('         TimeRunning: ' + inttostr(hours)+ ' Hours, ' + inttostr(mins) + ' Minutes ' + inttostr(secs) + ' Seconds');
    WriteLn('         Money Made: ' + floattoStr(MoneyMade) + 'K GP');
    WriteLn('         Making: ' + floattoStr(Round(MonPerHour)) + 'K GP Per Hour');


    end;


    begin
    SetupSRL;
     ActivateClient;
     DeclarePlayers;
     LoginPlayer;
     wait(lagg);
     MouseSpeed := 15;
     PBox := IntToBox(220, 140, 300, 200);
     SPS_AnyAngle := True;
     SPS_Setup(runescape_surface, ['6_6', '6_7']);

     if InvCount > 0 then
     begin
     ToBank;
     BankItems;
     end;

     While(True) Do
     begin
     If not LoggedIn Then
        Begin
        LogInPlayer;
        If FindNormalRandoms then
        begin
    Logout;
    TerminateScript;
    end;
        end;
      While(LoggedIn) do
      begin
     ToField;


    repeat
     FindFlax(x, y);
     MMouse(x,y,3,3);
     ClickMouse(x,y,1);

    While (AveragePixelShift(PBox, 250, 500) > 100) do
    begin;
    wait(200);
    rand := RandomRange(0,AntiFreq);
    if rand = 1 then
    begin
    Antiban;
    end;
    end;


    until(InvCount = 28)
    writeln('We Have A Full Inv');
     ToBank;
     BankItems;
     Proggy;
      end;
     end;


    end.
    Last edited by Justin; 03-31-2013 at 01:07 AM. Reason: Added [simba] tags -- Justin

  9. #59
    Join Date
    Mar 2013
    Posts
    1
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Exception in Script: Unable to find file 'SPS/sps-osr.simba' used from ''
    I am still running into this problem, can anybody help me please?

  10. #60
    Join Date
    Dec 2011
    Posts
    164
    Mentioned
    4 Post(s)
    Quoted
    23 Post(s)

    Default

    Quote Originally Posted by Diegos123 View Post
    Exception in Script: Unable to find file 'SPS/sps-osr.simba' used from ''
    I am still running into this problem, can anybody help me please?
    Did you install SPS OSR correctly?

    Should be in
    \Simba\Includes\SPS

    and should be named sps-osr

  11. #61
    Join Date
    Sep 2010
    Posts
    5,762
    Mentioned
    136 Post(s)
    Quoted
    2739 Post(s)

    Default

    Quote Originally Posted by mohammed49 View Post
    i did everything trying to run this script
    Simba Code:
    program cFlax;
    {$DEFINE SMART}
    {$I SRL-OSR/SRL.Simba}
    {$I SPS/sps-osr.simba}

    Const
    Lagg = 2000; //Change To Adjust Wait Time To Make Up For Your Lag
    FlaxPrice = 50; //Change To The Ammount You Will Be Selling The Flax For
    FlaxCol = 15131288;
    BankCol = 8229016;
    AntiFreq = 20; //The Lower, the More Antiban
    Version = '1.4';
    var
    MyLoc: TPoint;
    PBox: TBox;
    secs,mins,hours,Tot,x,y,rand,Inv,FlaxPicked : Integer ;
    MonPerHour,MoneyMade :Extended;
    Procedure DeclarePlayers;
    Begin
      HowManyPlayers := 1;
      NumberOfPlayers(HowManyPlayers);
      CurrentPlayer := 0;

       Players[0].Name := '';  //Enter Username
       Players[0].Pass :='';                 //Enter Password
       Players[0].Nick :='';                         //Enter Nick
       Players[0].Active:=True;
    End;

    Procedure BankItems;

    var
    x,y: integer;

    begin
    MakeCompass(0);
    repeat
    if FindObj(x, y, 'ank' , BankCol, 2) then
    begin
    MMouse(x,y,5,5);
    ClickMouse(x,y,1);
    wait(Lagg);
    end;
    until(BankScreen)
    //writeln('We Have Found A Bank')
    wait(Lagg/2);
    DepositAll;
    FlaxPicked := FlaxPicked + 28;
    //writeln('We Have Finished Banking')

    CloseBank;
    end;
    Procedure ToField;
    begin
    MakeCompass(180);
    SPS_AnyAngle := True;
     SPS_Setup(runescape_surface, ['6_6', '6_7']);
    SetRun(True)

      MyLoc := sps_getMyPos;
      //Writeln('SPS returns ' + inttostr(myloc.x) + ',' + inttostr(myloc.y));
     SPS_WalkPath([Point(2720, 2711), Point(2723, 2717), Point(2724, 2728), Point(2726, 2737), Point(2729, 2747), Point(2729, 2755), Point(2726, 2761), Point(2731, 2769), Point(2732, 2779), Point(2734, 2791), Point(2734, 2800), Point(2736, 2811), Point(2738, 2822), Point(2740, 2832), Point(2739, 2839), Point(2742, 2849), Point(2745, 2857), Point(2748, 2865), Point(2752, 2874), Point(2753, 2887), Point(2755, 2897), Point(2760, 2906), Point(2771, 2911), Point(2776, 2918), Point(2785, 2920), Point(2796, 2921), Point(2805, 2921), Point(2810, 2916), Point(2810, 2909), Point(2810, 2901), Point(2809, 2894), Point(2806, 2891), Point(2799, 2885), Point(2792, 2883), Point(2784, 2886), Point(2783, 2891), Point(2783, 2899), Point(2783, 2907), Point(2790, 2910), Point(2800, 2910), Point(2799, 2900), Point(2795, 2897), Point(2793, 2897), Point(2791, 2899), Point(2781, 2880)]);
     MyLoc := sps_getMyPos;
      //Writeln('SPS returns ' + inttostr(myloc.x) + ',' + inttostr(myloc.y));
     end;
    Procedure ToBank;
    begin
    MakeCompass(180);
    SPS_AnyAngle := True;
     SPS_Setup(runescape_surface, ['6_6', '6_7']);
      SetRun(True)
      MyLoc := sps_getMyPos;
      //Writeln('SPS returns ' + inttostr(myloc.x) + ',' + inttostr(myloc.y));
     SPS_WalkPath([Point(2781, 2880), Point(2791, 2899), Point(2793, 2897), Point(2795, 2897), Point(2799, 2900), Point(2800, 2910), Point(2790, 2910), Point(2783, 2907), Point(2783, 2899), Point(2783, 2891), Point(2784, 2886), Point(2792, 2883), Point(2799, 2885), Point(2806, 2891), Point(2809, 2894), Point(2810, 2901), Point(2810, 2909), Point(2810, 2916), Point(2805, 2921), Point(2796, 2921), Point(2785, 2920), Point(2776, 2918), Point(2771, 2911), Point(2760, 2906), Point(2755, 2897), Point(2753, 2887), Point(2752, 2874), Point(2748, 2865), Point(2745, 2857), Point(2742, 2849), Point(2739, 2839), Point(2740, 2832), Point(2738, 2822), Point(2736, 2811), Point(2734, 2800), Point(2734, 2791), Point(2732, 2779), Point(2731, 2769), Point(2726, 2761), Point(2729, 2755), Point(2729, 2747), Point(2726, 2737), Point(2724, 2728), Point(2723, 2717), Point(2720, 2711)]);
     MyLoc := sps_getMyPos;
      //Writeln('SPS returns ' + inttostr(myloc.x) + ',' + inttostr(myloc.y));
     end;

    function FindFlax(var fx, fy: Integer): Boolean;
    var
      arP: TPointArray;
      ararP: T2DPointArray;
      tmpCTS, i, arL: Integer;
      P: TPoint;
    begin
      tmpCTS := GetColorToleranceSpeed;
      ColorToleranceSpeed(2);
      SetColorSpeed2Modifiers(0.29, 0.85);

      if not(FindColorsTolerance(arP, 6399256, MSX1, MSY1, MSX2, MSY2, 30)) then
      begin
        ColorToleranceSpeed(tmpCTS);
        SetColorSpeed2Modifiers(0.2, 0.2);
        Exit;
      end;

      SortTPAFrom(arP, Point(MSCX, MSCY));
      ararP := SplitTPAEx(arP, 10, 10);
      arL := High(ararP);

      for i := 0 to arL do
      begin
        P := MiddleTPA(ararP[i]);
        MMouse(P.x, P.y, 5, 5);
        Wait(100 + Random(100));
        if (IsUpText('lax')) then
        begin;
          Result := True;
          Break;
        end;
      end;

      ColorToleranceSpeed(tmpCTS);
      SetColorSpeed2Modifiers(0.2, 0.2);

      if (i = arL + 1) then
      begin
        Exit;
      end;

      GetMousePos(fx, fy);
    end;

    Function Antiban: Boolean;
    begin
      case random(2) of
      //1: HoverSkill('strength', false);
      1: MakeCompass(RandomRange(0,359));

      end;
    end;

    procedure Proggy;


    begin
     ClearDebug;
     ConvertTime(GetTimeRunning,hours,mins,secs);
    MoneyMade := FlaxPicked * FlaxPrice / 1000;
    MonPerHour := MoneyMade * 3600000  / GetTimeRunning;
    WriteLn('         cFlax Version: '+Version);
    WriteLn('         ');
    WriteLn('         FlaxPicked: ' + intToStr(FlaxPicked));
    WriteLn('         TimeRunning: ' + inttostr(hours)+ ' Hours, ' + inttostr(mins) + ' Minutes ' + inttostr(secs) + ' Seconds');
    WriteLn('         Money Made: ' + floattoStr(MoneyMade) + 'K GP');
    WriteLn('         Making: ' + floattoStr(Round(MonPerHour)) + 'K GP Per Hour');


    end;


    begin
    SetupSRL;
     ActivateClient;
     DeclarePlayers;
     LoginPlayer;
     wait(lagg);
     MouseSpeed := 15;
     PBox := IntToBox(220, 140, 300, 200);
     SPS_AnyAngle := True;
     SPS_Setup(runescape_surface, ['6_6', '6_7']);

     if InvCount > 0 then
     begin
     ToBank;
     BankItems;
     end;

     While(True) Do
     begin
     If not LoggedIn Then
        Begin
        LogInPlayer;
        If FindNormalRandoms then
        begin
    Logout;
    TerminateScript;
    end;
        end;
      While(LoggedIn) do
      begin
     ToField;


    repeat
     FindFlax(x, y);
     MMouse(x,y,3,3);
     ClickMouse(x,y,1);

    While (AveragePixelShift(PBox, 250, 500) > 100) do
    begin;
    wait(200);
    rand := RandomRange(0,AntiFreq);
    if rand = 1 then
    begin
    Antiban;
    end;
    end;


    until(InvCount = 28)
    writeln('We Have A Full Inv');
     ToBank;
     BankItems;
     Proggy;
      end;
     end;


    end.
    Simba tags please
    Last edited by Justin; 03-31-2013 at 01:08 AM. Reason: Added Simba tags to quote

  12. #62
    Join Date
    Mar 2013
    Posts
    4
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    Where do I put Runescape_surfaces07

  13. #63
    Join Date
    Mar 2007
    Posts
    5,125
    Mentioned
    275 Post(s)
    Quoted
    901 Post(s)

    Default

    Quote Originally Posted by RJJ95 View Post
    Simba tags please
    Manually added to post + your quote.

    Justin.

    Forum account issues? Please send me a PM

  14. #64
    Join Date
    Mar 2006
    Location
    Belgium
    Posts
    3,564
    Mentioned
    111 Post(s)
    Quoted
    1475 Post(s)

    Default

    Quote Originally Posted by EvanZillah View Post
    Where do I put Runescape_surfaces07
    sps\img\runescape_surface07

    Creds to DannyRS for this wonderful sig!

  15. #65
    Join Date
    Mar 2013
    Posts
    6
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    my screen is blank

  16. #66
    Join Date
    Mar 2013
    Posts
    15
    Mentioned
    0 Post(s)
    Quoted
    5 Post(s)

    Default

    Quote Originally Posted by SeanStar View Post
    One moment, let me get you the fonts.


    Extract the attachment into your Fonts folder.


    can you help me please i can't fix the osl part i dont even know how it calls lol help me and give me ur donate link i will give you a gift tnx bro

  17. #67
    Join Date
    Dec 2012
    Posts
    5
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

    Default

    Thanks, fixed my problem

  18. #68
    Join Date
    Mar 2013
    Posts
    16
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

    Default

    found whats fucking up

  19. #69
    Join Date
    Mar 2013
    Posts
    18
    Mentioned
    0 Post(s)
    Quoted
    6 Post(s)

    Default

    once again im a noob at this can u pleas help me

    To use this, download the attachments and place sps-osr.simba in your Includes/SPS/ folde -> im doing this but when i look in the includes i only see 2 folders: SEL , SRL-OSR
    Where do i need to put it in any help pleas?<3

  20. #70
    Join Date
    Jan 2007
    Posts
    181
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Been having a lot of difficulty trying to get SPS to work, i'll give it a shot and report back.

  21. #71
    Join Date
    Mar 2013
    Posts
    14
    Mentioned
    0 Post(s)
    Quoted
    7 Post(s)

    Default

    Hello guys, i am getting the same error as another member on this thread
    Error at Line 54
    [Error] C:\Simba\Includes\SPS/sps-osr.simba(55:35): Unknown identifier 'MMCX' at line 54
    Compiling failed.

    I did everything thats required, but still can't get it to work :/ any help is much appreciated.

  22. #72
    Join Date
    Jul 2012
    Posts
    113
    Mentioned
    7 Post(s)
    Quoted
    34 Post(s)

    Default

    Quote Originally Posted by idontlikeu View Post
    once again im a noob at this can u pleas help me

    To use this, download the attachments and place sps-osr.simba in your Includes/SPS/ folde -> im doing this but when i look in the includes i only see 2 folders: SEL , SRL-OSR
    Where do i need to put it in any help pleas?<3
    You need to install regular SPS on simba before you install this. In Simba: View->Extensions->Enable sps.sex
    Quote Originally Posted by mesinko3 View Post
    Hello guys, i am getting the same error as another member on this thread
    Error at Line 54
    [Error] C:\Simba\Includes\SPS/sps-osr.simba(55:35): Unknown identifier 'MMCX' at line 54
    Compiling failed.

    I did everything thats required, but still can't get it to work :/ any help is much appreciated.
    Do you have SRL-OSR include installed and included on your script? It's a requirement.

  23. #73
    Join Date
    Mar 2013
    Posts
    18
    Mentioned
    0 Post(s)
    Quoted
    6 Post(s)

    Default

    @ Seanstar


    How do i enable sps.sex i cant open it ..?

  24. #74
    Join Date
    Jul 2012
    Posts
    7
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    I keep getting an error?
    Code:
    SPS_BitmapToMap(Minimap, SPS_Accuracy, SmallMap);
    How do I fix this?

  25. #75
    Join Date
    Mar 2013
    Posts
    12
    Mentioned
    0 Post(s)
    Quoted
    6 Post(s)

    Default

    Exception in Script: Unable to find file 'SRL-OSR/SRL.Simba' used from 'C:\Users\Parth\Downloads\FishingGuildFisher[1.02].simba'

Page 3 of 7 FirstFirst 12345 ... LastLast

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •