Page 19 of 23 FirstFirst ... 91718192021 ... LastLast
Results 451 to 475 of 556

Thread: [OUTDATED][SRL 4] Falador North Guard Fighter. Guardz!

  1. #451
    Join Date
    Mar 2008
    Posts
    64
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Since everyone is ignoring me (i think), what is a suggested combat level to do this? (with out getting to much hits ofcourse )

    arround 30, 40, 50, 60 or 70+

  2. #452
    Join Date
    Mar 2007
    Posts
    4,810
    Mentioned
    3 Post(s)
    Quoted
    3 Post(s)

    Default

    Lol thankd by Fakawi must store this page in my favourites

  3. #453
    Join Date
    Jul 2007
    Location
    Norway.
    Posts
    1,938
    Mentioned
    3 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by mr_cookie View Post
    Since everyone is ignoring me (i think), what is a suggested combat level to do this? (with out getting to much hits ofcourse )

    arround 30, 40, 50, 60 or 70+
    I would say around 45. 40 is possible too, but then you should have a lot of players.

  4. #454
    Join Date
    Mar 2008
    Posts
    64
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Thanks , now i must find out wich of my accounts is arround level 40 - 50 (got higher ones but dont want them banned :P )

  5. #455
    Join Date
    Oct 2007
    Posts
    28
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    How can i set my screen name? =(

  6. #456
    Join Date
    Mar 2008
    Posts
    75
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    ok with chrisx fix i got this 2 work but it seems that every time my guy gets hurt it stands around and waits for him to regen health i had 1 damage done to me and he stood there for a good minute looking at hp

  7. #457
    Join Date
    Jul 2007
    Posts
    14
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    i got SRL 4 or someting.. but it wont even start at me xD, or its only me again -.-''

  8. #458
    Join Date
    Mar 2008
    Location
    In a cave
    Posts
    345
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I too have a slight problem with this script(using ChrisX Fix). It kind of starts up well, but it doesn't detect water color:
    Falador RoadColor = 6254456
    Could not find Water Color!
    BankColor := 3390156
    Falador RoadColor = 6254456

    What might be a solution to my problem? I tried to place my acc in different places in and near the bank, but none of it worked for me

  9. #459
    Join Date
    Aug 2007
    Location
    Georgia, U.S.
    Posts
    890
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    FindWaterColor Is messed up.

  10. #460
    Join Date
    Mar 2008
    Location
    In a cave
    Posts
    345
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by skilld u View Post
    FindWaterColor Is messed up.
    What u mean by that? It should be autocolor and the function for finding it seems to be alright...

  11. #461
    Join Date
    Aug 2007
    Location
    Georgia, U.S.
    Posts
    890
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    theres a bug in SRL.

    put this in autocolor.scar:

    SCAR Code:
    {*******************************************************************************
    function FindWaterColor: Integer;
    By: Tarajunky
    Description: Autodetects Water Color on Minimap
    *******************************************************************************}

     
    function FindWaterColor: Integer;
    var
      GC, a, l, TestColor, Red, Green, Blue : integer;
    var
      P:array of Tpoint;
    begin
      GC := 12095356;
      Flag;
      FindColorsSpiralTolerance(MMCX, MMCY, P, GC, MMX1, MMY1, MMX2, MMY2, 50);
      l:=GetArrayLength(P);
      for a:= 0 to l-1 do
      begin
        if rs_OnMinimap(P[a].x,P[a].y) then
        begin
          TestColor := GetColor(P[a].x,P[a].y);
          if SimilarColors(TestColor,GC,50) then
          begin
            ColorToRGB(TestColor,Red,Green,Blue);
            if InRange(Green - Red, 18, 30) then
              if InRange(Blue - Red, 55, 72) then
                if InRange(Blue - Green, 34, 52) then
                  if GetColor(P[a].x + 2, P[a].y + 2) = TestColor then
                    if GetColor(P[a].x + 1, P[a].y + 1) = TestColor then
                      if GetColor(P[a].x, P[a].y + 2) = TestColor then
                        if GetColor(P[a].x + 2, P[a].y) = TestColor then
                          if GetColor(P[a].x, P[a].y + 1) = TestColor then
                            if GetColor(P[a].x + 1, P[a].y) = TestColor then
                              if GetColor(P[a].x + 2, P[a].y + 1) = TestColor then
                                if GetColor(P[a].x + 1, P[a].y + 2) = TestColor then
                                begin
                                  Result := TestColor;
                                  WaterColor := TestColor;
                                  WriteLn('WaterColor = ' + IntToStr(TestColor));
                                  Exit;
                                end;
          end;
        end;
      end;
      WriteLn('Could not find Water Color!');
      Result := 0;
    end;

  12. #462
    Join Date
    Mar 2008
    Location
    In a cave
    Posts
    345
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    OMG, now it doesn't find FallyRoadColor :S

    EDIT: Maybe I should enter the color manually? :P

  13. #463
    Join Date
    Aug 2007
    Location
    Georgia, U.S.
    Posts
    890
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    h/o, i'll post the fix in a sec. King Vash made the updated ones


    SCAR Code:
    {*******************************************************************************
    function FindFallyRoadColor: Integer;
    By: Tarajunky
    Description: Autodetects Falador Road Color on Minimap
    *******************************************************************************}

     
    function FindFallyRoadColor: Integer;
    var
      GC, a, l, TestColor, Red, Green, Blue : integer;
    var
      P:array of Tpoint;
    begin
      GC := 6187637;
      Flag;
      FindColorsSpiralTolerance(MMCX, MMCY, P, GC, MMX1, MMY1, MMX2, MMY2, 50);
      l:=GetArrayLength(P);
      for a:= 0 to l-1 do
      begin
        if rs_OnMinimap(P[a].x,P[a].y) then
        begin
          TestColor := GetColor(P[a].x,P[a].y);
          if SimilarColors(TestColor,GC,50) then
          begin
            ColorToRGB(TestColor,Red,Green,Blue);
            if InRange(Red - Blue, 18, 33)then
              if InRange(Red - Green, 0, 15) then
                if InRange(Green - Blue, 8, 30) then
                  if GetColor(P[a].x + 5, P[a].y + 5) = TestColor then
                    if GetColor(P[a].x + 3, P[a].y + 3) = TestColor then
                      if GetColor(P[a].x, P[a].y + 5) = TestColor then
                        if GetColor(P[a].x + 5, P[a].y) = TestColor then
                          if GetColor(P[a].x, P[a].y + 3) = TestColor then
                            if GetColor(P[a].x + 3, P[a].y) = TestColor then
                              if GetColor(P[a].x + 5, P[a].y + 3) = TestColor then
                                if GetColor(P[a].x + 3, P[a].y + 5) = TestColor then
                                begin
                                  Result := TestColor;
                                  WriteLn('Falador RoadColor = ' +
                                    IntToStr(TestColor));
                                  Exit;
                                end;
          end;
        end;
      end;
      WriteLn('Could not find Falador Road Color!');
      Result := 0;
    end;

  14. #464
    Join Date
    Mar 2007
    Posts
    4,810
    Mentioned
    3 Post(s)
    Quoted
    3 Post(s)

    Default

    Man use my fix!!

  15. #465
    Join Date
    Mar 2008
    Location
    In a cave
    Posts
    345
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Ok, now got the colors running, but I now think I'm hopeless in this, because after getting all the colors the script opens my stats tab in RS and clicks on smithing icon. After that it goes crazy and starst moving the cursor around the screen randomly. If I let it do so, then after a while it just logs out...

  16. #466
    Join Date
    Aug 2007
    Location
    Georgia, U.S.
    Posts
    890
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    are you using nauman's fix? he posted on page 23 i think.

  17. #467
    Join Date
    Mar 2008
    Location
    In a cave
    Posts
    345
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by NaumanAkhlaQ View Post
    Man use my fix!!
    All the same as described above...

  18. #468
    Join Date
    Apr 2007
    Posts
    37
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    nice worked for me

  19. #469
    Join Date
    Mar 2008
    Posts
    10
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    work fine, but it still slow when getting food

  20. #470
    Join Date
    Nov 2006
    Posts
    22
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Line 432: [Hint] (10397:1): Variable 'OLDMS' never used in script C:\Program Files\SCAR 3.15\includes\SRL/SRL/Core/AntiRandoms/AntiRandoms.scar
    Line 87: [Error] (12275:1): Unknown identifier 'SetMouseMode' in script C:\Program Files\SCAR 3.15\includes\SRL/SRL.scar

    Sorry... not working for me. Does this in all scripts

  21. #471
    Join Date
    Sep 2007
    Posts
    10
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    That script is beeeeast! Fally gaurd fighter.. This is like uber easy EXP! Thanks!

  22. #472
    Join Date
    Mar 2008
    Posts
    17
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default not working 4 me

    this is wat i get


    Include file C:\Program Files\SCAR 3.12\includes\SRL\SRL\misc\Bitmaps\Prayer.scar does not exist.
    Failed when compiling




    ????? any ideas, plus i am new 2 this so i have no real idea

  23. #473
    Join Date
    Mar 2008
    Posts
    10
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Haha sweet !!!

  24. #474
    Join Date
    Jul 2007
    Posts
    14
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Nice I'll have to give it a try. Nothin like starting to auto in RS after a long break =) Thanks.

  25. #475
    Join Date
    Mar 2008
    Posts
    22
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    can someone help me, im getting this frog.scar error all the time.


    it says this: Line 35: [Error] (8678:11): Unknown identifier 'FindDeformed' in script C:\Program Files\SCAR 3.12\includes\SRL/SRL/Core/AntiRandoms/Frog.scar


    help please.

Page 19 of 23 FirstFirst ... 91718192021 ... LastLast

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Help with Falador Guard Script
    By Strykr in forum OSR Help
    Replies: 2
    Last Post: 02-18-2008, 08:30 PM

Posting Permissions

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