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...)
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...)
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]
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?
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.
=============== 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 ! =======================
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
if FindFaladorRoadColor is failing try thisSCAR 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;
change your numbers to be what is listed above and it will work againSCAR 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;
Darn still get water, fally color error's after changing Autocolor.
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![]()
I think scripts aren't working good for me cause I am using Vista.
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 ! =======================
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.)
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??
[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.
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
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!
look at the top of this page for the fix to that error.
http://www.srl-forums.com/forum/show...7&postcount=82
45 runecrafting now...=============== 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 ! =======================![]()
[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]
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
Use this link, and replace the functions with those that are in the link...
i did,cant find the location where too change the code =/
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
Go to Includes\SRL\SRL\Core\AutoColor.scari did,cant find the location where too change the code =/
then, find the functions with the same names and replace them.
Can you add any breaks? I want to use it with one player.
EDIT: NVM already found out how
There are currently 1 users browsing this thread. (0 members and 1 guests)