Page 4 of 22 FirstFirst ... 2345614 ... LastLast
Results 76 to 100 of 526

Thread: CrafterMaster

  1. #76
    Join Date
    Feb 2007
    Posts
    419
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Cheater, check the number of players you have listed and the consta Totalnumberofplayers they need to be the same (you probable have 2 players and only say you have one or 3 and 2...)

  2. #77
    Join Date
    Nov 2006
    Location
    NSW, Australia
    Posts
    3,487
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    Is it just me...or does FindWaterColor always fail now?
    [CENTER][img]http://signatures.mylivesignature.com/54486/113/4539C8FAAF3EAB109A3CC1811EF0941B.png[/img][/CENTER]
    [CENTER][BANANA]TSN ~ Vacation! ~ says :I Love Santy[/BANANA][/CENTER]

    [CENTER][BANANA]Raymond - Oh rilie? says :Your smart[/BANANA][/CENTER]

  3. #78
    Join Date
    Mar 2007
    Location
    The Netherlands
    Posts
    80
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Santa_Clause View Post
    Is it just me...or does FindWaterColor always fail now?
    nope got same problem with another script so you're not the only one:P

  4. #79
    Join Date
    Dec 2006
    Location
    Copy pastin to my C#
    Posts
    3,788
    Mentioned
    8 Post(s)
    Quoted
    29 Post(s)

    Default

    Good job you've done there, I bought some ess to airinize

    Hey you need to improve the walking failsafes - FindWaterColor failed and now it stays doing

    F in DDTMMaster(1) sorry
    DDTMMaster(1) was just called from Main Loop:
    Could not find Water Color!
    DDTMMaster(1) was just called from Main Loop:
    Could not find Water Color!
    F in DDTMMaster(1) sorry


    I'll post a progress reports soon, but add walking failsafes to next vers a bit more

    Also, in the SetupScript, why do you set the RCing of the players to 99?

  5. #80
    Join Date
    Dec 2007
    Posts
    203
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    No I don't think it is the script because I tried using .85dad again and it had the same problem which didn't happen before, maybe color changes in rs?

    Edit: Yep they changed Timo's air script is doing the same.

  6. #81
    Join Date
    Feb 2007
    Posts
    419
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    =============== Air Crafter Master .84dad By King Vash ===============
    P=R=O=G=R=E=S=S= =R=E=P=O=R=T= =T=I=M=E=
    :13 Hours, 30 Minutes and 19 Seconds:

    Failed DDTM's:
    Saved 7/19: Users/Attempts, waited 70 times, and performed 470 AntiBans

    0ome=F RC:67, 151 Trips, 29008 Airs, 4228/40941 Essances! Loc: Could not be found

    1:nara=F RC:54, 150 Trips, 20720 Airs, 4200/10434 Essances! Loc: F in DDTMMaster(6)

    301 Banks! CrafterMaster used 8428 ess! Starting with 51375 ess, 16 percent done
    Total Banked: 49728 Air Runes (15GP) is 745920 GP - 244412 GP for Ess = 501508 GP Profit
    ======================= Air Crafter Master ! =======================

  7. #82
    Join Date
    Feb 2007
    Posts
    419
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    they change the color if you adjust the ranges you can find it.
    AutoColor (found under includes\SRL\SRL\core\AutoColor.scar) needs to be changed

    If WaterColor is failing try this
    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;
    if FindFaladorRoadColor is failing try this
    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;
    change your numbers to be what is listed above and it will work again

  8. #83
    Join Date
    Dec 2007
    Posts
    203
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Darn still get water, fally color error's after changing Autocolor.

  9. #84
    Join Date
    Dec 2006
    Location
    Copy pastin to my C#
    Posts
    3,788
    Mentioned
    8 Post(s)
    Quoted
    29 Post(s)

    Default

    Lookie!

    =============== Air Crafter Master .84dad By King Vash ===============
    P=R=O=G=R=E=S=S= =R=E=P=O=R=T= =T=I=M=E=
    :8 Hours, 23 Minutes and 48 Seconds:

    Failed DDTM's:
    Saved 12/19: Users/Attempts, waited 47 times, and performed 258 AntiBans

    0:****=T RC:43, 181 Trips, 19936 Airs, 5068/5068 Essances! Loc: Found at BANK

    181 Banks! CrafterMaster used 5068 ess! Starting with 5068 ess, 99 percent done
    Total Banked: 19936 Air Runes (15GP) is 299040 GP - 146972 GP for Ess = 152068 GP Profit
    ======================= Air Crafter Master ! =======================

    One player, 8 hours, 5k ess used and still true - out of ess

    Thank you, you have done an excellent job there.

    Now I'll go buy a whole lotta more ess and will get a superlong proggy

  10. #85
    Join Date
    Dec 2007
    Posts
    203
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I think scripts aren't working good for me cause I am using Vista.

  11. #86
    Join Date
    Feb 2007
    Posts
    419
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    My problem is my computer not the program any more, I have 4 successful 24 hour proggy with 2 players,

    I started one account three weeks ago my account now has 2 Million and rc 56
    The other account started at 34 and has rc 67 and made 6 million

    =============== Air Crafter Master .84dad By King Vash ===============
    P=R=O=G=R=E=S=S= =R=E=P=O=R=T= =T=I=M=E=
    :24 Hours, 19 Minutes and 55 Seconds:

    Failed DDTM's:
    Saved 23/33: Users/Attempts, waited 126 times, and performed 872 AntiBans

    0ome=T RC:67, 296 Trips, 56448 Airs, 8288/36881 Essances! Loc: Complete! You robbed the BANK

    1:nara=T RC:56, 312 Trips, 38836 Airs, 8736/16816 Essances! Loc: Complete! You robbed the BANK

    608 Banks! CrafterMaster used 17024 ess! Starting with 53697 ess, 31 percent done
    Total Banked: 95284 Air Runes (15GP) is 1429260 GP - 493696 GP for Ess = 935564 GP Profit
    ======================= Air Crafter Master ! =======================

  12. #87
    Join Date
    Feb 2007
    Posts
    419
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I think this script is brilliant, it's so simply, and the usersave makes it work almost infinitley, the only problems i have with it is my computer Blue Screening out on my due to ram issues or running out of ess (I started with 100k on the top account, and 20k two days ago on the other.)

  13. #88
    Join Date
    Jan 2008
    Location
    Michigan, USA
    Posts
    143
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    thats great that it works for you, but when i run the version you have up right now i get an out of range error in the srl include login file, but yet other scripts work? including the .85dad version of this one, except when that one runs it cant find the water color and i have made the changes to autocolor as you suggested earlier, wat world are you using??

  14. #89
    Join Date
    Apr 2007
    Posts
    38
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    [Runtime Error] : Out Of Range in line 73 in script C:\Program Files\SCAR 3.14\includes\SRL/SRL/Core/Login.scar

    Im a little lost all the other scripts I have wok just fine but this one. Help please.

  15. #90
    Join Date
    Feb 2007
    Posts
    419
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    You need to change the TotalPlayerCount (it's at the top line 32) to the number of players you defined in DeclarePlayers. Under DeclarePlayers delete all the unneeded Player define things

  16. #91
    Join Date
    Jan 2008
    Location
    Michigan, USA
    Posts
    143
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    well that fixed the login error, but its still not finding water color
    Code:
    DDTMMaster(1) was just called from Main Loop: 
    Could not find Water Color!
    DDTMMaster(1) was just called from Main Loop: 
    Could not find Water Color!
    F in DDTMMaster(1) sorry
    DDTMMaster(1) was just called from Main Loop: 
    Could not find Water Color!
    DDTMMaster(1) was just called from Main Loop: 
    Could not find Water Color!
    F in DDTMMaster(1) sorry
    DDTMMaster(1) was just called from Main Loop: 
    Could not find Water Color!

  17. #92
    Join Date
    Feb 2007
    Posts
    419
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    look at the top of this page for the fix to that error.

    http://www.srl-forums.com/forum/show...7&postcount=82

  18. #93
    Join Date
    Nov 2006
    Location
    NSW, Australia
    Posts
    3,487
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    =============== Air Crafter Master .84dad By King Vash ===============
    P=R=O=G=R=E=S=S= =R=E=P=O=R=T= =T=I=M=E=
    :9 Hours, 30 Minutes and 30 Seconds:

    Failed DDTM's:
    Saved 12/20: Users/Attempts, waited 24 times, and performed 173 AntiBans

    0:lory=T RC:45, 131 Trips, 16256 Airs, 3668/7061 Essances! Loc: Could not be found

    131 Banks! CrafterMaster used 3668 ess! Starting with 7061 ess, 51 percent done
    Total Banked: 16256 Air Runes (15GP) is 243840 GP - 106372 GP for Ess = 137468 GP Profit
    ======================= Air Crafter Master ! =======================
    45 runecrafting now...
    [CENTER][img]http://signatures.mylivesignature.com/54486/113/4539C8FAAF3EAB109A3CC1811EF0941B.png[/img][/CENTER]
    [CENTER][BANANA]TSN ~ Vacation! ~ says :I Love Santy[/BANANA][/CENTER]

    [CENTER][BANANA]Raymond - Oh rilie? says :Your smart[/BANANA][/CENTER]

  19. #94
    Join Date
    Feb 2008
    Posts
    21
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    SRL Compiled in 3136 msec
    Welcome.
    jersey2
    Creating the NickTPA.
    DDTMMaster(1) was just called from Main Loop:
    Could not find Water Color!
    DDTMMaster(1) was just called from Main Loop:
    Could not find Water Color!
    F in DDTMMaster(1) sorry
    DDTMMaster(1) was just called from Main Loop:
    Could not find Water Color!
    DDTMMaster(1) was just called from Main Loop:
    Could not find Water Color!
    F in DDTMMaster(1) sorry
    DDTMMaster(1) was just called from Main Loop:
    Could not find Water Color!
    DDTMMaster(1) was just called from Main Loop:
    Could not find Water Color!
    F in DDTMMaster(1) sorry
    DDTMMaster(1) was just called from Main Loop:
    Could not find Water Color!



    Keeps saying this =/ and ur link doesnt work

  20. #95
    Join Date
    Dec 2006
    Location
    Copy pastin to my C#
    Posts
    3,788
    Mentioned
    8 Post(s)
    Quoted
    29 Post(s)

    Default

    Use this link, and replace the functions with those that are in the link...

  21. #96
    Join Date
    Feb 2008
    Posts
    21
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    i did,cant find the location where too change the code =/

  22. #97
    Join Date
    Mar 2007
    Location
    The Netherlands
    Posts
    80
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Nice script first had the findwatercolor error but saw your post and fixed it works freakin smooth! and really fast i will let this run for next few days i wanted my rc lvl to go up anyway so.. also 1 lvl till i can make 6 times as much air runes:P

  23. #98
    Join Date
    Mar 2007
    Location
    The Netherlands
    Posts
    80
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by TommyGun View Post
    i did,cant find the location where too change the code =/
    go to your scar folder where you installed it and then includes\SRL\SRL\core\AutoColor.scar and find the watercolor procedure and replace it easy...

  24. #99
    Join Date
    Dec 2006
    Location
    Copy pastin to my C#
    Posts
    3,788
    Mentioned
    8 Post(s)
    Quoted
    29 Post(s)

    Default

    i did,cant find the location where too change the code =/
    Go to Includes\SRL\SRL\Core\AutoColor.scar

    then, find the functions with the same names and replace them.

  25. #100
    Join Date
    Mar 2007
    Location
    The Netherlands
    Posts
    80
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Can you add any breaks? I want to use it with one player.


    EDIT: NVM already found out how

Page 4 of 22 FirstFirst ... 2345614 ... LastLast

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
  •