View Full Version : [SRL] Edgeville Fisher!
Wizzup?
08-14-2008, 07:22 PM
Next version will have more solid bank finding, it very rarely (but still does) walk to that room with all those students...
Boingpie
08-15-2008, 08:48 AM
I couldnt leave it on overnight, but i will try to leave it on most of the day. Expect a longish proggie (h)
Im actually running it right now.
Wizzup?
08-15-2008, 10:45 AM
Uploaded version #20.1
I forgot to re-add Deposit(). Added FindFishSymbol, for when the Fishing Symbols are covered.
Boingpie
08-15-2008, 12:11 PM
Uploaded version #20.1
I forgot to re-add Deposit(). Added FindFishSymbol, for when the Fishing Symbols are covered.
Oh, lol. Im still running a 3hr+ proggie with version 20, 2 chars and both still true. Pretty good script
Worked for 7 Hours, 14 Minutes and 12 Seconds
Banked 77 times, fishing at a rate of 259 Fish P/H and 14880xp P/H.
Trout caught: 1157, at a rate of 159 p/h
Salmons caught: 721, at a rate of 99 p/h
1st player ran out of feathers (didnt have much money)
2nd player got lost above the barbarian pub.
Gr8 script and ill buy some more feathers and see if i can leave it on overnight.
WithoutFear
08-15-2008, 08:49 PM
Worked for 4 Hours, 9 Minutes and 22 Seconds
Banked 40 times, fishing at a rate of 225 Fish P/H and 12430xp P/H.
Trout caught: 690, at a rate of 166 p/h
Salmons caught: 246, at a rate of 59 p/h
----------------------------
0 : ???? = T; Loc: Bank; R: ; B: 40 F lvl: 44; T: 247
----------------------------
that was a one man proggie. Worked absolutely flawlessly, walking and everything. If you ever want to add into an update, you could put some function to check whether it is running, and if it isn't then run. I don't know, just an idea that would help boost the xp/hr.
Wizzup?
08-15-2008, 09:27 PM
Thanks for the progress reports.
I'm going to add some more stuff I think. I am really enjoying sucking all the fish from edgeville. :p
Maybe using bait too. So you can start from level 5. :)
Boingpie
08-15-2008, 09:30 PM
Ok, good ideas, i am going to try an allnighter, ive redownloaded it and im starting it now. Expect 8hr+
the scar noob
08-15-2008, 09:51 PM
Nice release, I'm scanning through it:)
Btw, why are you combining a tpa with an empty one?;)
Function FollowSpot(Var x, y: integer): Boolean;
Var
FishP, FishP1, FishP2: TPointArray;
P: TPoint;
z: Integer;
Begin
Result := False;
If Not LoggedIn Then
Exit;
z := GetColorToleranceSpeed;
ColorToleranceSpeed(2);
FindColorsTolerance(FishP1, 12828090, x - 20, y - 20, x + 20, y + 20, 40);
FishP := CombineTPA(FishP1, FishP2);
If Length(FishP) > 15 Then
Begin
Result := True;
P := MiddleTPA(FishP);
x := P.X;
y := P.Y;
End;
ColorToleranceSpeed(z);
End;
-Tsn
EDIT:
Procedure ToBank;
Var
x, y, WalkMark, I, R: Integer;
B: Boolean;
Begin
If Not LoggedIn Then Exit;
B := False;
MakeCompass('N');
MarkTime(WalkMark);
FindNormalRandoms;
Repeat
Wait(50);
I := I + 1;
If I > 3 Then
R := 10;
If RadialWalkOff(WaterColor, 315, 420, RandomRange(60 - R, 70 - R), -1, -1, -10, 0) Then
FFlag(15);
If TimeFromMark(WalkMark) > 120000 Then
Begin
LogOut;
Exit;
End;
If I > 3 Then
If Not FindEdgeVilleBank(x, y) Then
Begin
If FindSymbol(x, y, 'Bank') Then
Begin
B := True;
Break;
End;
End
Else
Begin
B := True;
Break;
End;
Until False;
FindNormalRandoms;
If B Then
Begin
MFNF(x, y, -1, 1);
Wait(100);
FFlag(0);
Wait(500);
End;
Players[CurrentPlayer].Loc := 'Bank';
End;
What's the point of the Boolean var in here?
Even if the script didn't managed to find the bank, it'll put that bool to true.
You should put it to false then, and change the player's loc in "if B then" statement.
EDIT: Was to tired yesterday to look further, I found something else Wiz:
Procedure Bank;
Var
x, y, Tries, i: Integer;
T, S: TIntegerArray;
countInv: InvFoodAr;
Begin
If Not LoggedIn Then Exit;
Repeat
OpenBankFast('eb');
Tries := Tries + 1;
Until ((BankScreen) Or (Tries > 9));
If Not BankScreen Then
OpenBankQuiet('eb');
SetLength(countInv, 0);
SetLength(countInv, 28);
countInv := GetFullInv;
If BankScreen Then
Begin
If Not BankScreen Then Exit;
T := GetFoodCount('Trout', Raw, countInv);
S := GetFoodCount('Salmon', Raw, countInv);
ReportVars[0] := Length(T);
ReportVars[1] := Length(S);
Trouts := Trouts + Length(T);
Salmons := Salmons + Length(S);
ClickAllItems(FoodArray[3].FoodBMP.Raw, 'bmp', 'All', 1000, [30]);
ClickAllItems(FoodArray[4].FoodBMP.Raw, 'bmp', 'All', 1000, [30]);
Deposit(3, 28, True);
If NoRod Then
Begin
FixBank;
Wait(1000);
For I := 0 To High(FishRodColors) Do
If FindColor(x, y, FishRodColors[i], MSX1, MSY1, MSX2, MSY2) Then
Begin
MMouse(x, y, 2, 2);
GetMousePos(x, y);
Wait(100);
If IsUpText('ish') Then
Mouse(x, y, 0, 0, True);
Wait(100);
Break;
End;
End;
End;
CloseBank;
Players[CurrentPlayer].Banked := Players[CurrentPlayer].Banked + 1;
Banks := Banks + 1;
ReportVars[3] := ReportVars[3] + 1;
End;
Now, if you've lost your rod, you withdraw a new one, great!
But why don't you reset that bool var to false after gaining a new rod?
I know, before it starts fishing it checks if there's a rod, and it'll put that var to false again, in this function: "Function FindRod: Boolean;".
But, than it'll do obj finding, without it's needed, because you already ahve withdrawed a new one;)
wazzzup
08-16-2008, 05:51 AM
i get a runtime error, says our of range in line 40..its weird because it compiles
Simtoon
08-16-2008, 06:10 AM
ill try this one out i have 10k feathers in my bank with heaps of dust on them
WithoutFear
08-16-2008, 06:54 PM
i get a runtime error, says our of range in line 40..its weird because it compiles
i bet you mistyped your user name...try again
Edit: Don't know if you ever had this error before Wizzup?...but i lost a rod to a whirlpool so it went back to the bank like normal after deciding it lost the fishing rod. Now it ended up with 2? not quite sure what happened cuz i wasn't watching it when this occured. Is this what The Scar Noob was talking about?
Wizzup?
08-16-2008, 07:00 PM
Nice release, I'm scanning through it:)
Btw, why are you combining a tpa with an empty one?;)
Function FollowSpot(Var x, y: integer): Boolean;
Var
FishP, FishP1, FishP2: TPointArray;
P: TPoint;
z: Integer;
Begin
Result := False;
If Not LoggedIn Then
Exit;
z := GetColorToleranceSpeed;
ColorToleranceSpeed(2);
FindColorsTolerance(FishP1, 12828090, x - 20, y - 20, x + 20, y + 20, 40);
FishP := CombineTPA(FishP1, FishP2);
If Length(FishP) > 15 Then
Begin
Result := True;
P := MiddleTPA(FishP);
x := P.X;
y := P.Y;
End;
ColorToleranceSpeed(z);
End;
-Tsn
EDIT:
Procedure ToBank;
Var
x, y, WalkMark, I, R: Integer;
B: Boolean;
Begin
If Not LoggedIn Then Exit;
B := False;
MakeCompass('N');
MarkTime(WalkMark);
FindNormalRandoms;
Repeat
Wait(50);
I := I + 1;
If I > 3 Then
R := 10;
If RadialWalkOff(WaterColor, 315, 420, RandomRange(60 - R, 70 - R), -1, -1, -10, 0) Then
FFlag(15);
If TimeFromMark(WalkMark) > 120000 Then
Begin
LogOut;
Exit;
End;
If I > 3 Then
If Not FindEdgeVilleBank(x, y) Then
Begin
If FindSymbol(x, y, 'Bank') Then
Begin
B := True;
Break;
End;
End
Else
Begin
B := True;
Break;
End;
Until False;
FindNormalRandoms;
If B Then
Begin
MFNF(x, y, -1, 1);
Wait(100);
FFlag(0);
Wait(500);
End;
Players[CurrentPlayer].Loc := 'Bank';
End;
What's the point of the Boolean var in here?
Even if the script didn't managed to find the bank, it'll put that bool to true.
You should put it to false then, and change the player's loc in "if B then" statement.
EDIT: Was to tired yesterday to look further, I found something else Wiz:
Procedure Bank;
Var
x, y, Tries, i: Integer;
T, S: TIntegerArray;
countInv: InvFoodAr;
Begin
If Not LoggedIn Then Exit;
Repeat
OpenBankFast('eb');
Tries := Tries + 1;
Until ((BankScreen) Or (Tries > 9));
If Not BankScreen Then
OpenBankQuiet('eb');
SetLength(countInv, 0);
SetLength(countInv, 28);
countInv := GetFullInv;
If BankScreen Then
Begin
If Not BankScreen Then Exit;
T := GetFoodCount('Trout', Raw, countInv);
S := GetFoodCount('Salmon', Raw, countInv);
ReportVars[0] := Length(T);
ReportVars[1] := Length(S);
Trouts := Trouts + Length(T);
Salmons := Salmons + Length(S);
ClickAllItems(FoodArray[3].FoodBMP.Raw, 'bmp', 'All', 1000, [30]);
ClickAllItems(FoodArray[4].FoodBMP.Raw, 'bmp', 'All', 1000, [30]);
Deposit(3, 28, True);
If NoRod Then
Begin
FixBank;
Wait(1000);
For I := 0 To High(FishRodColors) Do
If FindColor(x, y, FishRodColors[i], MSX1, MSY1, MSX2, MSY2) Then
Begin
MMouse(x, y, 2, 2);
GetMousePos(x, y);
Wait(100);
If IsUpText('ish') Then
Mouse(x, y, 0, 0, True);
Wait(100);
Break;
End;
End;
End;
CloseBank;
Players[CurrentPlayer].Banked := Players[CurrentPlayer].Banked + 1;
Banks := Banks + 1;
ReportVars[3] := ReportVars[3] + 1;
End;
Now, if you've lost your rod, you withdraw a new one, great!
But why don't you reset that bool var to false after gaining a new rod?
I know, before it starts fishing it checks if there's a rod, and it'll put that var to false again, in this function: "Function FindRod: Boolean;".
But, than it'll do obj finding, without it's needed, because you already ahve withdrawed a new one;)
The B is just a mistake. Must have overlooked it.
The fishing, combining tpa's: I used to use two tpa's... I just quickly adjusted the function.
About the last: InitPlayer; contains NoRod := False; but it should be in withdrawing a rod too. :)
Smarter Child
08-16-2008, 09:22 PM
Im defienetly trying this one
Proggy Reserved_____()____
Procedure Bank;
Var
x, y, Tries, i: Integer;
T, S: TIntegerArray;
countInv: InvFoodAr;
Begin
If Not LoggedIn Then Exit;
Repeat
OpenBankFast('eb');
Tries := Tries + 1;
Until ((BankScreen) Or (Tries > 9));
If Not BankScreen Then
OpenBankQuiet('eb');
SetLength(countInv, 0);
SetLength(countInv, 28);
countInv := GetFullInv;
If BankScreen Then
Begin
If Not BankScreen Then Exit;
T := GetFoodCount('Trout', Raw, countInv);
S := GetFoodCount('Salmon', Raw, countInv);
ReportVars[0] := Length(T);
ReportVars[1] := Length(S);
Trouts := Trouts + Length(T);
Salmons := Salmons + Length(S);
ClickAllItems(FoodArray[3].FoodBMP.Raw, 'bmp', 'All', 1000, [30]);
ClickAllItems(FoodArray[4].FoodBMP.Raw, 'bmp', 'All', 1000, [30]);
Deposit(3, 28, True);
If NoRod Then
Begin
FixBank;
Wait(1000);
For I := 0 To High(FishRodColors) Do
If FindColor(x, y, FishRodColors[i], MSX1, MSY1, MSX2, MSY2) Then
Begin
MMouse(x, y, 2, 2);
GetMousePos(x, y);
Wait(100);
If IsUpText('ish') Then
Mouse(x, y, 0, 0, True);
Wait(100);
Break;
End;
End;
End;
CloseBank;
Players[CurrentPlayer].Banked := Players[CurrentPlayer].Banked + 1;
Banks := Banks + 1;
ReportVars[3] := ReportVars[3] + 1;
End;
You shoudl have added to enter bank pin, but the script pretty good the way it is
thebob142
08-17-2008, 06:07 AM
Thanks for the progress reports.
I'm going to add some more stuff I think. I am really enjoying sucking all the fish from edgeville. :p
Maybe using bait too. So you can start from level 5. :)
id hate to burst your bubble but uh you have to be 25 for bating there otherwise you have to bait at drayonr
Wizzup?
08-17-2008, 09:38 AM
id hate to burst your bubble but uh you have to be 25 for bating there otherwise you have to bait at drayonr
Oh. Well. Thanks. Saved me some time then. ;)
Justcheat
08-17-2008, 03:55 PM
Wizzup, super good script! Never had 1 like this before, it doesnt stop it works and works and works, no bugs! Super Script!!!!
Magiic
08-17-2008, 08:44 PM
this is amazing lol
Finta1
08-18-2008, 06:44 AM
i get this
idk about you guys
Line 1339: [Error] (14067:42): Invalid number of parameters in script C:\Program Files\SCAR 3.15\Scripts\edgevillefisher.scar
Wizzup?
08-18-2008, 09:02 AM
Uploaded #20.2
Hey TSN, about the ToBank. It is not a bug, the code is actually fine.
If it does not find the edgeville bank, if tries to find it the other way, if it finds if the other way it sets b to true.
if it FOUND (NOT, and then an ELSE) the edgeville bank, it set's b to true too.
Magiic
08-18-2008, 06:30 PM
it doesn't seem to be able to find a rod in my bank after it missed a whirlpool is that because i have multiple rods though?
Smarter Child
08-18-2008, 11:50 PM
just wondering wizzup why did u add anchovy to this script
FoodArray[1].Name := 'Anchovy';
FoodArray[1].OutLinePixels := 137;
FoodArray[1].HPBoost := 2;
FoodArray[1].FoodBMP.Raw := BitmapFromString2(False, 'aA438E78DA4D8F5B0AC' +
'5300805B764128F9ACF3CF7BFA4AABD94DB034319A60925A2 2220' +
'679D4ED6E5041FA7580D1F829AA5210EF288267292128D28A 7890' +
'6265F532D3DF2CC9B3E7282BE5F15A71E8D323D234DDEAEA3 4573' +
'2CDE71833B4FB83D38F13585C2D03553B3D1BB751BFC4FD97 254A' +
'4F9A6C4B3C57C17C5A70DBE818525FCE3C494CA9D3BFCC77D FB2D' +
'F9F00178F142E598B4D516D3031D1');
did u need to add an anchovy bitmap to the script because i am thinking of making a edge fisher and i want to know if it is needed
wazzzup
08-19-2008, 04:06 AM
looks pretty good but after a couple of trips it logs me out with this error:
[Runtime Error] : Exception: Access violation at address 006165B1 in module 'scar.exe'. Read of address 00000000 in line 367 in script C:\Program Files\SCAR 3.15\includes\SRL/SRL/Core/Login.scar
and sorry to sound like a noob but what is this?
RemoteControlMasterNickName = ''; // Part of the Remote Control Masters' Name. i just put some of my rs characters name in it.
hey u really should make him walk on the left and right side of that dungeon building randomly...it just feels suspicious when i run along the river side everytime in the same way.
oh and i recommend u add a thing that makes him turn run on when its over 60? or something idk just to make it a bit faster because walking gets slow at times. and it gives people less time to see your walking patterns
Wizzup?
08-19-2008, 08:52 AM
just wondering wizzup why did u add anchovy to this script
FoodArray[1].Name := 'Anchovy';
FoodArray[1].OutLinePixels := 137;
FoodArray[1].HPBoost := 2;
FoodArray[1].FoodBMP.Raw := BitmapFromString2(False, 'aA438E78DA4D8F5B0AC' +
'5300805B764128F9ACF3CF7BFA4AABD94DB034319A60925A2 2220' +
'679D4ED6E5041FA7580D1F829AA5210EF288267292128D28A 7890' +
'6265F532D3DF2CC9B3E7282BE5F15A71E8D323D234DDEAEA3 4573' +
'2CDE71833B4FB83D38F13585C2D03553B3D1BB751BFC4FD97 254A' +
'4F9A6C4B3C57C17C5A70DBE818525FCE3C494CA9D3BFCC77D FB2D' +
'F9F00178F142E598B4D516D3031D1');
did u need to add an anchovy bitmap to the script because i am thinking of making a edge fisher and i want to know if it is needed
Nah it is not needed.
r0flkn1f3
08-19-2008, 05:20 PM
Hey wizzup. Nice script. I was just wondering, can we just drop the fish instead of banking it? Coz banking slows powerleveling by a whole lot.
Smarter Child
08-20-2008, 11:38 PM
Hey wizzup. Nice script. I was just wondering, can we just drop the fish instead of banking it? Coz banking slows powerleveling by a whole lot.
If u want take out banking and set to drop but then if u lose ur rod/feathers tough luck and u can use an auto cooker later and cook all the fish and get cook exp or make some profit off the fish if u sell on GE//// This isn't meant only to powelevel ur fishing if u want a powerfisher find one or make one urself...Most prefer banking
>>>>>>>>Proggy<<<<<<<<<<<
Wizzup Edgeville Fly Fisher.
Worked for 5 Hours, 30 Minutes and 0 Seconds
Banked 55 times, fishing at a rate of 233 Fish P/H and 13420xp P/H.
Trout caught: 781, at a rate of 141 p/h
Salmons caught: 502, at a rate of 91 p/h
----------------------------
0 : *** = F; Loc: Bank; R: ; B: 18 F lvl: 51; T: 107
1 : *** = T; Loc: Bank; R: ; B: 37 F lvl: 46; T: 206
----------------------------
Going to fishing Spot
Thanks Wizzup so i will just make a bitmap for the raw salmon and raw trout and u took the longer walk route i believe the one on the other side is faster....im not sure please reply
Wizzup?
08-21-2008, 12:04 AM
Thanks Wizzup so i will just make a bitmap for the raw salmon and raw trout and u took the longer walk route i believe the one on the other side is faster....im not sure please reply
What other side do you mean?
0wn 4 skill
08-21-2008, 12:15 AM
He means past the place with the yew trees in.
aka1represent
08-21-2008, 11:18 AM
Very nice script m8! :)
My proggy: Worked for 6 Hours, 58 Minutes and 36 Seconds
Banked 81 times, fishing at a rate of 288 Fish P/H and 16700xp P/H.
Trout caught: 1211, at a rate of 173 p/h
Salmons caught: 803, at a rate of 115 p/h
Edit: 1 player btw
Smarter Child
08-21-2008, 06:08 PM
He means past the place with the yew trees in.
Yes it is faster and might save a whole lots of time btw one of my guys got banned either urs or Zephr's script that is closed now doesn;t matter though he was lvl 42 with 67 mining 53 fishing 48 mage had about 3 mill in the bank lol~
Nose Smasher
08-21-2008, 06:22 PM
Hey wizzy! been a while since I used this script.. :p Grats on the update :)
wont be home till sat, but I'll test it out then..
[Proggy]
Griff
08-21-2008, 06:26 PM
WOOo updated, :D looks great, I'll post proggie in a bit. This is usually when I tell people what they can do to improve they're script, and that I will look over it even more. But your stuffs way too confusing XD
Zabron
08-21-2008, 06:50 PM
hehe looks good i think im gonna try it
I B X R
08-21-2008, 11:52 PM
Hey do you guys think this script is good enough to use on a main?I want to know if I could go from 80-99 fishing with it lol
farhan1
08-22-2008, 03:17 AM
Thanks, i haven't played RS in over a year and im glad to see this site is still runing. I started fishing trout today and realized i needed some help :).
Thanks again...i will post report once i get scar up and runing...
Smarter Child
08-22-2008, 03:43 AM
Hey do you guys think this script is good enough to use on a main?I want to know if I could go from 80-99 fishing with it lol
Yes but make a bot army of 8 less chance of Randoms/Ban and u can get a way longer proggy than the 71 hour Wizzup? has. plus if you are member you could do this at shilo if you make a shilo one or u can use this one still very neat code. probably flawless other than when it walks to where all those students are. Lol use this i would study it but i am too busy with my other script............Btw Wizzup? i have a nice single player proggy for you still running though about 4 hours now i think good for single=player though
this might be a little off-topic but how old are you Wizzup? im guessing 67 no lol jk probably 17-23 my guess lol
wazzzup
08-22-2008, 05:34 AM
you should add a sleep option to the script
krazyk56
08-22-2008, 06:49 AM
Wizzup Edgeville Fly Fisher.
Worked for 21 Minutes and 49 Seconds
Banked 4 times, fishing at a rate of 272 Fish P/H and 15290xp P/H.
Trout caught: 67, at a rate of 184 p/h
Salmons caught: 32, at a rate of 87 p/h
----------------------------
0 : azy = T; Loc: Bank; R: ; B: 4 F lvl: 52; T: 0
----------------------------
/~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
| SRL 21 Randoms Report |
| www.srl-forums.com |
|~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
| Talks : 1 |
| Old Men : 1 |
\~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
hopefully i can get a longer proggy soon. awesome script btw
wazzzup
08-22-2008, 10:15 AM
Worked for 6 Hours, 11 Minutes and 30 Seconds
Banked 72 times, fishing at a rate of 284 Fish P/H and 16360xp P/H.
Trout caught: 1092, at a rate of 176 p/h
Salmons caught: 669, at a rate of 108 p/h
Fly Rods picked up 1.
The script works great!
Smarter Child
08-22-2008, 10:00 PM
you should add a sleep option to the script
Yeah your right it might rid of those randoms especially if people do not have a botting army and they want a long single-player proggy for their char. instead of getting a random sending them to draynor manor/wizard tower...P.s most characters get ported to Draynor Manor if a random comes don't know which though because i was gone when i left the script running
farhan1
08-22-2008, 10:36 PM
Worked for 1 Hours, 41 Minutes and 33 Seconds
Banked 16 times, fishing at a rate of 236 Fish P/H and 13330xp P/H.
Trout caught: 265, at a rate of 156 p/h
Salmons caught: 135, at a rate of 79 p/h
Works great thanks...
shro0ms
08-24-2008, 09:10 AM
Failed when compiling
Line 278: [Error] (14393:1): 'END' expected in script C:\Program\SCAR 3.15\includes\SRL/SRL/Core/AntiRandoms/AntiRandoms.scar
du u know what's wrong? :S
0wn 4 skill
08-24-2008, 01:48 PM
Failed when compiling
Line 278: [Error] (14393:1): 'END' expected in script C:\Program\SCAR 3.15\includes\SRL/SRL/Core/AntiRandoms/AntiRandoms.scar
du u know what's wrong? :S
Stop spamming all threads please. I told you how to fix...
Nice script wizzup?
osaMABUSh
08-24-2008, 11:17 PM
SRL Compiled in 1061 msec
[Runtime Error] : Out Of Range in line 46 in script C:\Users\Jainish\Downloads\SRL Edgeville Fisher #20.2 Pub.scar
How do I fix this? I haven't found any solution to it.
Wizzup?
08-25-2008, 02:21 PM
SRL Compiled in 1061 msec
[Runtime Error] : Out Of Range in line 46 in script C:\Users\Jainish\Downloads\SRL Edgeville Fisher #20.2 Pub.scar
How do I fix this? I haven't found any solution to it.
Set up your players correctly.
nikos
08-27-2008, 03:57 AM
----------------------------
Wizzup Edgeville Fly Fisher.
Worked for 2 Hours, 17 Minutes and 52 Seconds
Banked 26 times, fishing at a rate of 282 Fish P/H and 16290xp P/H.
Trout caught: 390, at a rate of 169 p/h
Salmons caught: 259, at a rate of 112 p/h
Fly Rods picked up 1.
----------------------------
0 : * = T; Loc: Bank; R: ; B: 26 F lvl: 5*; T: 124
----------------------------
single player
Another one:
----------------------------
Wizzup Edgeville Fly Fisher.
Worked for 5 Hours, 2 Minutes and 20 Seconds
Banked 59 times, fishing at a rate of 285 Fish P/H and 16410xp P/H.
Trout caught: 892, at a rate of 177 p/h
Salmons caught: 545, at a rate of 108 p/h
----------------------------
0 : * = T; Loc: Bank; R: ; B: 59 F lvl: 0*; T: 282
----------------------------
----------------------------
Wizzup Edgeville Fly Fisher.
Worked for 6 Hours, 11 Minutes and 49 Seconds
Banked 73 times, fishing at a rate of 277 Fish P/H and 16190xp P/H.
Trout caught: 994, at a rate of 160 p/h
Salmons caught: 726, at a rate of 117 p/h
----------------------------
0 : * = T; Loc: Bank; R: ; B: 73 F lvl: **; T: 343
----------------------------
reddevil12312
09-01-2008, 04:15 AM
ok. im for sure about this now. u have got to be the best long walk script maker on the whole site. nice script. itll be a nice addition to ur list of them. lol. give proggy later. hopefully a big one. it might be late tho. im busy trying out ur brand new ESS MINER. which rocks by the way.
ran it for a bit over 2 hours and got me 45 > 50 fish :D
very nice, to bad it stopped after 2 hours :(
Bonfield
09-04-2008, 05:45 AM
Worked for 15 Hours, 54 Minutes and 59 Seconds
Banked 150 times, fishing at a rate of 226 Fish P/H and 12910xp P/H.
Trout caught: 2263, at a rate of 142 p/h
Salmons caught: 1336, at a rate of 83 p/h
Fly Rods picked up 4.
i was using 3 players
great script works better than before
ImSteezy
09-04-2008, 02:18 PM
Wizzup Edgeville Fly Fisher.
Worked for 6 Hours, 34 Minutes and 30 Seconds
Banked 68 times, fishing at a rate of 250 Fish P/H and 14270xp P/H.
Trout caught: 1044, at a rate of 158 p/h
Salmons caught: 602, at a rate of 91 p/h
Fly Rods picked up 1.
----------------------------
0 : *** = F; Loc: Fishing; R: Mordaut; B: 24 F lvl: 0; T: 141
1 : *** = T; Loc: Bank; R: ; B: 44 F lvl: 47; T: 0
----------------------------
/~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
| SRL 21 Randoms Report |
| www.srl-forums.com |
|~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
| SRL Logs : 1 |
| Talks : 1 |
| Dwarfs : 1 |
| Boxes Solved : 2 |
\~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
Awesome script! I got the schoolroom random so it had to stop lol.
Simtoon
09-05-2008, 04:04 AM
Wizzup Edgeville Fly Fisher.
Worked for 6 Hours, 0 Minutes and 31 Seconds
Banked 59 times, fishing at a rate of 241 Fish P/H and 13950xp P/H.
Trout caught: 878, at a rate of 146 p/h
Salmons caught: 572, at a rate of 95 p/h
Wizzup?
09-05-2008, 06:05 AM
Crazy reports guy! Will add them soon. :)
BjRobMan
09-06-2008, 10:53 AM
Going for longest proggie ATM will post soon.
markel
09-09-2008, 07:13 PM
nice :D il post prodgie soon, test it tomorow
[Runtime Error] : Out Of Range in line 34 in script C:\Documents and Settings\Miku\Desktop\SRL Edgeville Fisher #20.2 Pub(2).scar
him whats wrong?
Wizzup?
09-09-2008, 07:22 PM
nice :D il post prodgie soon, test it tomorow
[Runtime Error] : Out Of Range in line 34 in script C:\Documents and Settings\Miku\Desktop\SRL Edgeville Fisher #20.2 Pub(2).scar
him whats wrong?
Set up your players correctly.
demenstar
09-10-2008, 01:50 AM
Obamabush says:Originally Posted by osaMABUSh
SRL Compiled in 1061 msec
[Runtime Error] : Out Of Range in line 46 in script C:\Users\Jainish\Downloads\SRL Edgeville Fisher #20.2 Pub.scar
How do I fix this? I haven't found any solution to it.
Then wizzup says:Set up your players correctly.
and then...
Markel says:Originally Posted by markel
nice il post prodgie soon, test it tomorow
[Runtime Error] : Out Of Range in line 34 in script C:\Documents and Settings\Miku\Desktop\SRL Edgeville Fisher #20.2 Pub(2).scar
him whats wrong?
Then Wizzup says:Set up your players correctly.
STOP SPAMMING AND READ A PAGE. THESE EXAMPLES WERE TAKEN FROM THE SAME PAGE. IF YOU REALLY DONT GET IT THEN GO READ SOME TUTS AND STOP LEECHING!
edit: wow and they are like 5 posts apart...
[-jesus-]
09-11-2008, 11:05 AM
Wizzup Edgeville Fly Fisher.
Worked for 4 Hours, 37 Minutes and 6 Seconds
Banked 54 times, fishing at a rate of 291 Fish P/H and 16900xp P/H.
Trout caught: 789, at a rate of 170 p/h
Salmons caught: 558, at a rate of 120 p/h
Fly Rods picked up 1.
----------------------------
0 : oker = T; Loc: Bank; R: ; B: 54 F lvl: 57; T: 0
Got Mordaut
Tom_Gower
09-13-2008, 09:31 AM
amazing script I seem to be running both ur ess miner and this at the same time, works really nice dude good work!
<reserved for proggy>
Hmm wizzup I seem to be having this problem [Runtime Error] : divide by Zero in line 1404 in script C:\DOCUME~1\T0msta\LOCALS~1\Temp\SRL Edgeville Fisher #20.2 Pub.scar
Oh wait I fixed it, I thought you could put number of loads as 0 for infinite silly me.
Pixelate
09-14-2008, 09:49 PM
hmm, first attempt to fish rod got washed away :( Thats annoying that new update. Successfully walked back to bank after woods though
Mountain Lions Own?
09-16-2008, 04:24 AM
has anyone here gotten to lvl 80 using this script? if so could you tell me how long it took you?
P W N T
09-16-2008, 05:43 AM
Great Job! It's great, The fisher is great, When it starts to walk to the bank. It's spot on. Always gets to the right place..
Wizzup Edgeville Fly Fisher.
Worked for 16 Minutes and 47 Seconds
Banked 3 times, fishing at a rate of 267 Fish P/H and 15910xp P/H.
Trout caught: 39, at a rate of 139 p/h
Salmons caught: 36, at a rate of 128 p/h
----------------------------
0 : What = T; Loc: Bank; R: ; B: 3 F lvl: 52; T: 0
I got the Frog Random and got turned into a frog -.-
Mountain Lions Own?
09-17-2008, 12:08 AM
----------------------------
Wizzup Edgeville Fly Fisher.
Worked for 8 Hours, 33 Minutes and 27 Seconds
Banked 96 times, fishing at a rate of 90 Fish P/H and 5090xp P/H.
Trout caught: 494, at a rate of 57 p/h
Salmons caught: 281, at a rate of 32 p/h
----------------------------
0 : jack = T; Loc: Bank; R: ; B: 96 F lvl: 55; T: 474
lol i came back to an inventory full of boxes, and 24 of them in the first inventory slot
wazzzup
09-17-2008, 07:15 AM
flawless script man, i just had to stop it because im getting more feathers. one thing would be to turn run on though. other than that, nice job!
Worked for 2 Hours, 58 Minutes and 12 Seconds
Banked 28 times, fishing at a rate of 235 Fish P/H and 13220xp P/H.
Trout caught: 472, at a rate of 158 p/h
Salmons caught: 227, at a rate of 76 p/h
k.wallet.t
09-23-2008, 07:36 AM
Yea its flawless. Btw this is my very first script that actually ran with no errors :) I finally got the chance to experience the full power of Scar, muahahaha
Ritacame
09-27-2008, 01:15 AM
Wizzup Edgeville Fly Fisher.
Worked for 1 Hours, 45 Minutes and 52 Seconds
Banked 20 times, fishing at a rate of 267 Fish P/H and 15300xp P/H.
Trout caught: 294, at a rate of 166 p/h
Salmons caught: 178, at a rate of 100 p/h
I stopped because computer was getting hot :)
Smarter Child
09-28-2008, 11:40 PM
this isn't a flawless script it does get lost sometimes and with 8 players there are still a lot of them ending up in wizard tower etc. but it is a great script and another one that is probably flawless is narcles fast fighter
[-jesus-]
10-03-2008, 01:59 AM
Ran for 2+hrs on one account, forgot to save the proggy.
Reset &...
----------------------------
Wizzup Edgeville Fly Fisher.
Worked for 52 Minutes and 23 Seconds
Banked 11 times, fishing at a rate of 314 Fish P/H and 18300xp P/H.
Trout caught: 161, at a rate of 184 p/h
Salmons caught: 114, at a rate of 130 p/h
----------------------------
0 : oker = T; Loc: Bank; R: ; B: 11 F lvl: 76; T: 0
----------------------------
Brain
10-03-2008, 05:08 AM
Still runs great, thank you many times :)
----------------------------
Wizzup Edgeville Fly Fisher.
Worked for 13 Hours, 7 Minutes and 21 Seconds
Banked 139 times, fishing at a rate of 258 Fish P/H and 14810xp P/H.
Trout caught: 2097, at a rate of 159 p/h
Salmons caught: 1290, at a rate of 98 p/h
Fly Rods picked up 1.
----------------------------
0 : oon = T; Loc: Bank; R: ; B: 22 F lvl: 57; T: 108
1 : rai = F; Loc: NoMaze; R: NoMaze; B: 8 F lvl: 43; T: 47
2 : ain = T; Loc: Bank; R: ; B: 22 F lvl: 55; T: 116
3 : inz = T; Loc: Bank; R: ; B: 22 F lvl: 54; T: 110
4 : ffer = T; Loc: Bank; R: ; B: 22 F lvl: 46; T: 117
5 : inri = T; Loc: Bank; R: ; B: 22 F lvl: 43; T: 127
6 : ree = F; Loc: Fishing; R: Certer; B: 0 F lvl: 44; T: 1
7 : atet = T; Loc: Bank; R: ; B: 21 F lvl: 43; T: 110
----------------------------
/~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
| SRL 25 Randoms Report |
| www.srl-forums.com |
|~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
| SRL Logs : 71 |
| Talks : 3 |
| Old Men : 1 |
| Sandwiches : 1 |
| Certers Missed : 1 |
| Boxes Solved : 7 |
| Mazes Missed : 1 |
\~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
EDIT:
I'm still using it btw, but I split it up into two scars and running 4 accounts on each. Faster exp and fishys ;)
[-jesus-]
10-03-2008, 07:06 PM
----------------------------
Wizzup Edgeville Fly Fisher.
Worked for 6 Hours, 16 Minutes and 36 Seconds
Banked 34 times, fishing at a rate of 127 Fish P/H and 7530xp P/H.
Trout caught: 432, at a rate of 68 p/h
Salmons caught: 371, at a rate of 59 p/h
----------------------------
0 : oker = T; Loc: Bank; R: ; B: 34 F lvl: 77; T: 0
----------------------------
Socket Error # 10054
Connection reset by peer.
http://i36.tinypic.com/2hz2t0x.jpg
rawr front page?
Wizzup?
10-03-2008, 08:47 PM
Awesome! Added. ;)
[-jesus-]
10-03-2008, 11:18 PM
----------------------------
Wizzup Edgeville Fly Fisher.
Worked for 2 Hours, 32 Minutes and 27 Seconds
Banked 30 times, fishing at a rate of 290 Fish P/H and 16950xp P/H.
Trout caught: 419, at a rate of 164 p/h
Salmons caught: 318, at a rate of 125 p/h
Fly Rods picked up 1.
----------------------------
0 : oker = T; Loc: Bank; R: ; B: 30 F lvl: 77; T: 0
----------------------------
kthx
Brain
10-03-2008, 11:52 PM
It seems that the script is having a little trouble pulling the fly rod out of the bank. I have had many characters stop because there is no rod, but there is 8 in the first slot of the bank.
[-jesus-]
10-04-2008, 04:26 AM
Wizzup Edgeville Fly Fisher.
Worked for 4 Hours, 0 Minutes and 58 Seconds
Banked 49 times, fishing at a rate of 290 Fish P/H and 17470xp P/H.
Trout caught: 674, at a rate of 168 p/h
Salmons caught: 489, at a rate of 122 p/h
----------------------------
0 : oker = T; Loc: Bank; R: ; B: 49 F lvl: 77; T: 0
----------------------------
woohoo :)
Brain
10-05-2008, 05:54 AM
got a couple more here, I moved on to test some guild miners, but I'll be back, I got more feathers ;)
Worked for 11 Hours, 45 Minutes and 16 Seconds
Banked 131 times, fishing at a rate of 275 Fish P/H and 15930xp P/H.
Trout caught: 1954, at a rate of 166 p/h
Salmons caught: 1286, at a rate of 109 p/h
Fly Rods picked up 1.
----------------------------
0 : poo = T; Loc: Bank; R: ; B: 37 F lvl: 61; T: 182
1 : rain = F; Loc: Fishing; R: BOX ERROR; B: 22 F lvl: 51; T: 114
2 : ain = T; Loc: Bank; R: ; B: 36 F lvl: 60; T: 181
3 : inz = T; Loc: Bank; R: ; B: 36 F lvl: 58; T: 176
----------------------------
----------------------------
Wizzup Edgeville Fly Fisher.
Worked for 4 Hours, 20 Minutes and 36 Seconds
Banked 46 times, fishing at a rate of 259 Fish P/H and 14980xp P/H.
Trout caught: 670, at a rate of 154 p/h
Salmons caught: 456, at a rate of 104 p/h
Fly Rods picked up 1.
----------------------------
0 : poo = F; Loc: NoFeather; R: ; B: 9 F lvl: 61; T: 51
1 : rain = T; Loc: Bank; R: ; B: 14 F lvl: 53; T: 71
2 : ain = F; Loc: NoFeather; R: ; B: 9 F lvl: 60; T: 51
3 : inz = T; Loc: Bank; R: ; B: 14 F lvl: 59; T: 70
----------------------------
Had a lot more, but they were mainly just short 4 hour ones and stuff, I won't waste your time :)
aernout5
10-05-2008, 01:17 PM
got the following error :
http://img115.imageshack.us/img115/4445/errorxu9.jpg (http://imageshack.us)
(nvm fixed it)
[-jesus-]
10-06-2008, 04:34 AM
----------------------------
Wizzup Edgeville Fly Fisher.
Worked for 4 Hours, 7 Minutes and 17 Seconds
Banked 36 times, fishing at a rate of 195 Fish P/H and 10840xp P/H.
Trout caught: 568, at a rate of 137 p/h
Salmons caught: 238, at a rate of 57 p/h
Fly Rods picked up 1.
----------------------------
0 : kawi = F; Loc: NoFeather; R: ; B: 18 F lvl: 45; T: 101
1 : orki = F; Loc: Bank; R: ; B: 4 F lvl: 41; T: 29
2 : dssa = F; Loc: NoFeather; R: ; B: 2 F lvl: 33; T: 14
3 : rren = F; Loc: Bank; R: ; B: 1 F lvl: 26; T: 22
4 : Ana = T; Loc: Bank; R: ; B: 11 F lvl: 33; T: 0
----------------------------
BTW, for the rod solver I had to set to 4 tolerance to actually find the rods a few times.. Found the rod 4 times earlier, was a smaller proggy tho so I didn't post.
----------------------------
Wizzup Edgeville Fly Fisher.
Worked for 2 Hours, 23 Minutes and 48 Seconds
Banked 26 times, fishing at a rate of 249 Fish P/H and 14500xp P/H.
Trout caught: 344, at a rate of 143 p/h
Salmons caught: 254, at a rate of 105 p/h
----------------------------
0 : oker = F; Loc: Acc Disabled; R: ; B: 0 F lvl: 0; T: 58
1 : kawi = F; Loc: NoFeather; R: ; B: 18 F lvl: 49; T: 95
2 : orki = T; Loc: Bank; R: ; B: 8 F lvl: 43; T: 0
3 : dssa = T; Loc: Bank; R: ; B: 0 F lvl: 0; T: 0
4 : rren = T; Loc: Bank; R: ; B: 0 F lvl: 0; T: 0
5 : Ana = T; Loc: Bank; R: ; B: 0 F lvl: 0; T: 0
6 : ree = T; Loc: Bank; R: ; B: 0 F lvl: 0; T: 0
7 : ats = T; Loc: Bank; R: ; B: 0 F lvl: 0; T: 0
8 : 0de = T; Loc: Bank; R: ; B: 0 F lvl: 0; T: 0
----------------------------
Switching to a normal world so I can use RCMaster
Runescapian321
10-07-2008, 02:29 AM
----------------------------
Wizzup Edgeville Fly Fisher.
Worked for 2 Hours, 51 Minutes and 41 Seconds
Banked 28 times, fishing at a rate of 243 Fish P/H and 14020xp P/H.
Trout caught: 420, at a rate of 146 p/h
Salmons caught: 277, at a rate of 96 p/h
----------------------------
0 : llld = T; Loc: Bank; R: ; B: 8 F lvl: 49; T: 47
1 : ool = F; Loc: Fishing; R: BOX ERROR; B: 5 F lvl: 46; T: 31
2 : uble = F; Loc: Fishing; R: ; B: 7 F lvl: 47; T: 46
3 : ster = T; Loc: Bank; R: ; B: 8 F lvl: 44; T: 43
----------------------------
Stopped because I don't want my players to be uneven too much :\ I've run this a couple of times, but this is probably the longest proggy (I stop it as soon as someone is false). Main problems -
Box Error
Does not withdraw a fishing rod (gets to bank and doesn't do anything + in debug it says it had no feathers when it did, just the rod was missing)
Walking messes up (full inventory going to bank, it ended up in the ruin things, and near the wall it stopped once)
We run u.s.
10-07-2008, 02:42 AM
Looks good, I'll try to get a nice 5 hour run with this one.
RSplaya1
10-08-2008, 01:19 AM
Worked for 3 Hours, 1 Minutes and 10 Seconds
Banked 34 times, fishing at a rate of 279 Fish P/H and 16150xp P/H.
Trout caught: 511, at a rate of 169 p/h
Salmons caught: 333, at a rate of 110 p/h
working FLAWLESSLY. Wizzup your scripts always work perfect for me!
Mr_Bum
10-09-2008, 11:59 AM
----------------------------
Wizzup Edgeville Fly Fisher.
Worked for 4 Hours, 56 Minutes and 30 Seconds
Banked 56 times, fishing at a rate of 267 Fish P/H and 15320xp P/H.
Trout caught: 818, at a rate of 165 p/h
Salmons caught: 504, at a rate of 101 p/h
----------------------------
Single player. Very nice script.
Trouble finding the rods.
We run u.s.
10-14-2008, 01:18 AM
Wizzup Edgeville Fly Fisher.
Worked for 3 Hours, 56 Minutes and 28 Seconds
Banked 44 times, fishing at a rate of 270 Fish P/H and 15600xp P/H.
Trout caught: 654, at a rate of 165 p/h
Salmons caught: 414, at a rate of 105 p/h
Fly Rods picked up 2.
----------------------------
0 : cr0 = F; Loc: Bank; R: ; B: 42 F lvl: 55; T: 226
1 : cr0 = F; Loc: Bank; R: ; B: 0 F lvl: 55; T: 4
2 : cr0 = T; Loc: Bank; R: ; B: 2 F lvl: 55; T: 0
3 : = F; Loc: Bank; R: ; B: 0 F lvl: 0; T: 0
4 : = T; Loc: Bank; R: ; B: 0 F lvl: 0; T: 0
5 : = T; Loc: Bank; R: ; B: 0 F lvl: 0; T: 0
/~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
| SRL 25 Randoms Report |
| www.srl-forums.com |
|~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
| SRL Logs : 2 |
| Talks : 3 |
| Ricks : 1 |
| Lamps Solved : 1 |
| Certers Solved : 1 |
\~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
Good script, got me from 20 to 55 in 5 hours.
[-jesus-]
10-25-2008, 04:22 PM
Wizzup Edgeville Fly Fisher.
Worked for 9 Hours, 39 Minutes and 37 Seconds
Banked 100 times, fishing at a rate of 245 Fish P/H and 14130xp P/H.
Trout caught: 1463, at a rate of 151 p/h
Salmons caught: 909, at a rate of 94 p/h
Fly Rods picked up 1.
----------------------------
0 : oker = T; Loc: Bank; R: ; B: 24 F lvl: 78; T: 124
1 : kawi = T; Loc: Bank; R: ; B: 21 F lvl: 56; T: 108
2 : orki = F; Loc: Fishing; R: Mordaut; B: 8 F lvl: 0; T: 48
3 : dssa = F; Loc: NoFeather; R: ; B: 12 F lvl: 46; T: 68
4 : rren = F; Loc: NoFeather; R: ; B: 5 F lvl: 44; T: 29
5 : Ana = F; Loc: NoFeather; R: ; B: 1 F lvl: 43; T: 5
6 : ree = F; Loc: NoFeather; R: ; B: 18 F lvl: 44; T: 103
7 : ts = F; Loc: Bank; R: ; B: 0 F lvl: 0; T: 0
8 : 0de = F; Loc: Fishing; R: Frog; B: 11 F lvl: 43; T: 70
/~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
| SRL 25 Randoms Report |
| www.srl-forums.com |
|~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
| SRL Logs : 37 |
| Fights : 1 |
| Talks : 3 |
| Frog Solved : 1 |
| Frog Missed : 1 |
| Boxes Solved : 2 |
\~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
----------------------------
Resetting so I can start the accounts over.. (fix RC.scar! :P)
realrocker00
10-25-2008, 07:05 PM
not working for me, ill try again..
in2it
10-25-2008, 11:44 PM
Its Outdated i think dude :P
[-jesus-]
10-26-2008, 04:09 AM
Its Outdated i think dude :P
... Look at the date & message 2nd post above you
Heavenzeyez1
10-27-2008, 08:15 AM
id not find the Rod: 20
----------------------------
Wizzup Edgeville Fly Fisher.
Worked for 4 Hours, 15 Minutes and 4 Seconds
Banked 46 times, fishing at a rate of 264 Fish P/H and 15210xp P/H.
Trout caught: 682, at a rate of 160 p/h
Salmons caught: 442, at a rate of 103 p/h
Fly Rods picked up 1.
----------------------------
0 : uls = T; Loc: Bank; R: ; B: 46 F lvl: 50; T: 237
----------------------------
Did not find the Rod: 20
----------------------------
Wizzup Edgeville Fly Fisher.
Worked for 1 Hours, 56 Minutes and 27 Seconds
Banked 22 times, fishing at a rate of 270 Fish P/H and 15800xp P/H.
Trout caught: 302, at a rate of 155 p/h
Salmons caught: 224, at a rate of 115 p/h
----------------------------
0 : uls = T; Loc: Bank; R: ; B: 22 F lvl: 53; T: 102
----------------------------
I ran out of rods 2 times. :)
~Eerik~
[-jesus-]
10-28-2008, 07:23 PM
Wizzup Edgeville Fly Fisher.
Worked for 11 Hours, 16 Minutes and 16 Seconds
Banked 121 times, fishing at a rate of 244 Fish P/H and 14110xp P/H.
Trout caught: 1643, at a rate of 145 p/h
Salmons caught: 1108, at a rate of 98 p/h
----------------------------
0 : oker = F; Loc: Bank; R: ; B: 19 F lvl: 78; T: 91
1 : kawi = F; Loc: NoFeather; R: ; B: 10 F lvl: 56; T: 51
2 : orki = F; Loc: NoFeather; R: ; B: 20 F lvl: 47; T: 108
3 : dssa = F; Loc: NoFeather; R: ; B: 3 F lvl: 46; T: 15
4 : rren = F; Loc: NoFeather; R: ; B: 14 F lvl: 47; T: 77
5 : Ana = F; Loc: NoFeather; R: ; B: 20 F lvl: 47; T: 122
6 : ree = T; Loc: Bank; R: ; B: 20 F lvl: 48; T: 100
7 : ats = F; Loc: Bank; R: ; B: 0 F lvl: 0; T: 0
8 : 0de = F; Loc: Fishing; R: ; B: 15 F lvl: 47; T: 96
----------------------------
/~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
| SRL 28 Randoms Report |
| www.srl-forums.com |
|~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
| SRL Logs : 29 |
| Fights : 3 |
| Talks : 2 |
| Dwarfs : 1 |
| Old Men : 1 |
| Boxes Solved : 5 |
\~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
RS updated/they lost a lot of rods.
Wizzup Edgeville Fly Fisher.
Worked for 4 Hours, 5 Minutes and 35 Seconds
Banked 46 times, fishing at a rate of 268 Fish P/H and 15460xp P/H.
Trout caught: 676, at a rate of 165 p/h
Salmons caught: 425, at a rate of 103 p/h
----------------------------
0 : oker = T; Loc: Bank; R: ; B: 5 F lvl: 78; T: 22
1 : kawi = T; Loc: Bank; R: ; B: 5 F lvl: 57; T: 23
2 : orki = F; Loc: NoFeather; R: ; B: 8 F lvl: 55; T: 43
3 : dssa = T; Loc: Bank; R: ; B: 8 F lvl: 48; T: 26
4 : rren = T; Loc: Bank; R: ; B: 5 F lvl: 48; T: 26
5 : Ana = T; Loc: Bank; R: ; B: 5 F lvl: 48; T: 27
6 : ree = T; Loc: Bank; R: ; B: 5 F lvl: 49; T: 27
7 : ats = F; Loc: Bank; R: ; B: 0 F lvl: 0; T: 0
8 : 0de = T; Loc: Bank; R: ; B: 5 F lvl: 48; T: 26
----------------------------
#7 has been False from the beginning for all these proggys..
1nsan1ty
10-30-2008, 12:58 AM
yea.. not worknig for me.. i always get all set and everything, i hit run, and i get
"error starting SMART,check world prefix..
please help
Nose Smasher
10-30-2008, 02:19 AM
Either Take SMART out (it works just as good w/o it) or search the forums, there are people who have temp fixes for the SMART issues...
If you noticed, you'll get that error on any script that uses SMART... so your post should actually go in the SMART section of the forums... not here...
purepk3rstr
10-30-2008, 10:48 AM
It is a great script. Worked for 8 hours although i forgot to get a proggy. Problem is now that it never finds my feathers for some odd reason.
Laur€ns
10-31-2008, 06:05 PM
Wizzup Edgeville Fly Fisher.
Worked for 18 Minutes and 34 Seconds
Banked 4 times, fishing at a rate of 322 Fish P/H and 18860xp P/H.
Trout caught: 57, at a rate of 184 p/h
Salmons caught: 43, at a rate of 138 p/h
----------------------------
0 : oue = T; Loc: Bank; R: ; B: 4 F lvl: 71; T: 0
Got lost behind the house with the cook-thing in it.
realrocker00
11-01-2008, 12:42 AM
ummm, it doesent work for me? no scripts whatsoever are working for me wtf is wrong? can someone give me a VERY DETAILED guide to doing this, the ones i find don't help. if you could pm this i would be much happier! thanks :o
1nsan1ty
11-02-2008, 11:32 PM
yo.. nice fisher... these 2 of my best proggies..nice script
Wizzup Edgeville Fly Fisher.
Worked for 2 Hours, 26 Minutes and 12 Seconds
Banked 23 times, fishing at a rate of 227 Fish P/H and 13010xp P/H.
Trout caught: 351, at a rate of 144 p/h
Salmons caught: 204, at a rate of 83 p/h
----------------------------
0 : ned = F; Loc: Fishing; R: ; B: 23 F lvl: 51; T: 142
Wizzup Edgeville Fly Fisher.
Worked for 1 Hours, 9 Minutes and 32 Seconds
Banked 12 times, fishing at a rate of 258 Fish P/H and 14990xp P/H.
Trout caught: 175, at a rate of 150 p/h
Salmons caught: 125, at a rate of 107 p/h
----------------------------
0 : ned = T; Loc: Bank; R: ; B: 12 F lvl: 55; T: 0
love this script ;)
EDIT: also noticed that this works best with rev 20, with rev 28 it tends to get lost a lot...
hellian46
11-03-2008, 04:19 PM
1 player
Wizzup Edgeville Fly Fisher.
Worked for 7 Hours, 17 Minutes and 11 Seconds
Banked 82 times, fishing at a rate of 277 Fish P/H and 16010xp P/H.
Trout caught: 1234, at a rate of 169 p/h
Salmons caught: 787, at a rate of 108 p/h
Fly Rods picked up 1.
----------------------------
0 : Vo = T; Loc: Bank; R: ; B: 82 F lvl: 57; T: 414
----------------------------
Going to fishing Spot
No Fishing Spot
No Fishing Spot
No Fishing Spot
No Fishing Spot
No Fishing Spot
NextPlayer(Active: False);
/~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
| SRL 28 Randoms Report |
| www.srl-forums.com |
|~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
| SRL Logs : 20 |
| Fights : 1 |
| Talks : 1 |
| Ricks : 1 |
\~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
Very Nice script he got lost by wildy... Also only lost like 2 Rods..
hellian46
11-04-2008, 06:38 AM
Sorry for double posting but seems no one else is using, well after the first time running seems like I can't get it to go past 1 run before it gets messed up are stuck somewhere... Usually on the way back to bank, where the dungeon icon is..
snoker
11-04-2008, 09:11 AM
w000t .. thanks man tyvm ... i was looking for this script so badly =]
[-jesus-]
11-04-2008, 07:52 PM
Wizzup Edgeville Fly Fisher.
Worked for 14 Hours, 41 Minutes and 37 Seconds
Banked 163 times, fishing at a rate of 275 Fish P/H and 15950xp P/H.
Trout caught: 2431, at a rate of 165 p/h
Salmons caught: 1619, at a rate of 110 p/h
Fly Rods picked up 2.
----------------------------
0 : = T; Loc: Bank; R: ; B: 27 F lvl: 79; T: 124
1 : = F; Loc: NoFeather; R: ; B: 17 F lvl: 59; T: 86
2 : = T; Loc: Bank; R: ; B: 30 F lvl: 59; T: 148
3 : = F; Loc: Fishing; R: ; B: 0 F lvl: 48; T: 3
4 : = F; Loc: Bank; R: ; B: 15 F lvl: 51; T: 81
5 : = F; Loc: Bank; R: ; B: 15 F lvl: 51; T: 82
6 : = F; Loc: NoFeather; R: ; B: 1 F lvl: 50; T: 5
7 : = T; Loc: Bank; R: ; B: 30 F lvl: 46; T: 167
8 : = T; Loc: Bank; R: ; B: 28 F lvl: 53; T: 139
----------------------------
/~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
| SRL 28 Randoms Report |
| www.srl-forums.com |
|~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
| SRL Logs : 58 |
| Fights : 4 |
| Talks : 4 |
| Ricks : 2 |
| Old Men : 1 |
| Lamps Solved : 1 |
| Boxes Solved : 2 |
\~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
Ran overnight/during school..
senrath
11-09-2008, 04:49 PM
Wizzup Edgeville Fly Fisher.
Worked for 4 Hours, 23 Minutes and 50 Seconds
Banked 37 times, fishing at a rate of 210 Fish P/H and 10970xp P/H.
Trout caught: 806, at a rate of 183 p/h
Salmons caught: 118, at a rate of 26 p/h
/~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
| SRL 28 Randoms Report |
| www.srl-forums.com |
|~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
| SRL Logs : 9 |
| Fights : 1 |
| Talks : 1 |
\~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
----------------------------
Wizzup Edgeville Fly Fisher.
Worked for 7 Hours, 38 Minutes and 31 Seconds
Banked 82 times, fishing at a rate of 258 Fish P/H and 14730xp P/H.
Trout caught: 1251, at a rate of 163 p/h
Salmons caught: 725, at a rate of 94 p/h
Fly Rods picked up 1.
----------------------------
0 : omstr = F; Loc: NoFeather; R: ; B: 9 F lvl: 38; T: 48
1 : lzre = F; Loc: Fishing; R: Mordaut; B: 10 F lvl: 0; T: 59
2 : lzri = F; Loc: Fishing; R: BOX ERROR; B: 0 F lvl: 32; T: 13
3 : mdri = T; Loc: Bank; R: ; B: 63 F lvl: 50; T: 307
4 : = F; Loc: Bank; R: ; B: 0 F lvl: 0; T: 0
5 : = F; Loc: Bank; R: ; B: 0 F lvl: 0; T: 0
----------------------------
snoker
11-10-2008, 04:08 PM
w000t .. thanks man tyvm ... i was looking for this script so badly =]
Errrr...
doesn't work ?
clicked run and the stat says "running script" but it doesn't do anything :S
:( :confused:
senrath
11-10-2008, 04:54 PM
Errrr...
doesn't work ?
clicked run and the stat says "running script" but it doesn't do anything :S
:( :confused:
Are you sure you set it up properly? It works fine for me (although it doesn't seem to catch whirlpools).
flamingvenom
11-11-2008, 01:04 PM
1 Player[s]
Creating the NickTPA.
Could not find water Color.
Successfully executed
what the hell?
hennil
11-11-2008, 01:27 PM
Heres a proggy :)
----------------------------
Wizzup Edgeville Fly Fisher.
Worked for 3 Hours, 12 Minutes and 10 Seconds
Banked 35 times, fishing at a rate of 270 Fish P/H and 15560xp P/H.
Trout caught: 537, at a rate of 167 p/h
Salmons caught: 330, at a rate of 103 p/h
----------------------------
flamingvenom
11-11-2008, 01:45 PM
Okay I fixed it ... It goes to the fishing spot then u know how theres 2 fishign spots?
It clicks on one then when it gets there it clicks on other fishign spot and this just keeps going on and on... help!@
Darkmage
11-16-2008, 09:54 PM
[Runtime Error] : Exception: Access violation at address 6720138A in module 'Embedded SMART.dll'. Read of address 00000350 in line 48 in script C:\Program Files\SCAR 3.15\includes\srl/srl/misc/smart.scar
what does that mean? like a msgbox pops up and says. try reinstalling java. and i did and it still doint work plz help
We run u.s.
11-18-2008, 04:18 AM
[Runtime Error] : Exception: Access violation at address 6720138A in module 'Embedded SMART.dll'. Read of address 00000350 in line 48 in script C:\Program Files\SCAR 3.15\includes\srl/srl/misc/smart.scar
what does that mean? like a msgbox pops up and says. try reinstalling java. and i did and it still doint work plz help
1.Get Embedded SMART.dll.
2.Install Java, or Re-install it.
3.Smile and click play.
(use the search button to find .dll, and google the latest version of java(should be free*))
:spot:
EDIT: If you go to Public test corner in the forum section and go under "SMART Fixs"(posted by NAVA2, then scroll to the bottom on his mini tut, and you should see a zip file... download it, and place it where he tells you to..it says where to place it in his tut.(or simply, read what the debug box tells you...(C:\Program Files\SCAR 3.15\includes\srl/srl/misc/smart.scar)
And i think you need to get the smart fix, so your smart works...
Hope it works:)
RudeBoiAlex
11-18-2008, 05:18 PM
Wizzup Edgeville Fly Fisher.
Worked for 3 Hours, 47 Minutes and 48 Seconds
Banked 45 times, fishing at a rate of 292 Fish P/H and 17100xp P/H.
Trout caught: 636, at a rate of 167 p/h
Salmons caught: 475, at a rate of 125 p/h
----------------------------
0 : ure = T; Loc: Bank; R: ; B: 45 F lvl: 66; T: 0
----------------------------
stopped myself
sundeep125
11-18-2008, 05:39 PM
right could some1 please answer this question for me please
when i run this script i get an error with a new box opening saying something like...
error running smart, check world prefix.... something like that so cud some1 tell me please whats wrong because i really need this working
thanks everyone :D
RudeBoiAlex
11-19-2008, 04:58 PM
Wizzup Edgeville Fly Fisher.
Worked for 3 Hours, 36 Minutes and 23 Seconds
Banked 43 times, fishing at a rate of 293 Fish P/H and 17130xp P/H.
Trout caught: 610, at a rate of 169 p/h
Salmons caught: 449, at a rate of 124 p/h
----------------------------
0 : ure = T; Loc: Bank; R: ; B: 43 F lvl: 67; T: 0
----------------------------
RudeBoiAlex
11-20-2008, 11:21 AM
Wizzup Edgeville Fly Fisher.
Worked for 4 Hours, 41 Minutes and 51 Seconds
Banked 57 times, fishing at a rate of 296 Fish P/H and 17050xp P/H.
Trout caught: 850, at a rate of 180 p/h
Salmons caught: 543, at a rate of 115 p/h
Fly Rods picked up 1.
----------------------------
0 : ure = T; Loc: Bank; R: ; B: 57 F lvl: 69; T: 0
----------------------------
Wizzup?
11-20-2008, 02:46 PM
Nice, gained 14 levels. :)
sundeep125
11-20-2008, 09:36 PM
when i run this script i get this error..
Failed when compiling
Line 1370: [Error] (17705:43): Invalid number of parameters in script C:\Documents and Settings\Amit\My Documents\Downloads\SRL Edgeville Fisher #20.2 Pub.scar
Failed when compiling
Line 1370: [Error] (17705:14): Unknown identifier 'SmartWorldNo' in script C:\Documents and Settings\Amit\My Documents\Downloads\SRL Edgeville Fisher #20.2 Pub.scar
heres the line what it shows the error in:
SMARTSetupEx(SmartWorldNo, False, True, False);
so cud some1 please help me because i dont know whats wrong :D
cheers
supersayian2224
11-21-2008, 02:12 AM
Very nice :]
Worked for 1 Hours, 8 Minutes and 28 Seconds
Banked 13 times, fishing at a rate of 284 Fish P/H and 16440xp P/H.
Trout caught: 197, at a rate of 172 p/h
Salmons caught: 128, at a rate of 112 p/h
jacoby6000
11-21-2008, 04:42 AM
Its Still going!!!! (wish smart worked right, but thats not your fault)
Wizzup Edgeville Fly Fisher.
Worked for 1 Hours, 35 Minutes and 58 Seconds
Banked 18 times, fishing at a rate of 280 Fish P/H and 16600xp P/H.
Trout caught: 240, at a rate of 150 p/h
Salmons caught: 208, at a rate of 130 p/h
----------------------------
0 : XXXX = T; Loc: Bank; R: ; B: 18 F lvl: 64; T: 0
----------------------------
snoker
11-22-2008, 05:05 AM
@senrath
- gonna try it again...
- and btw im using Scar Divi 3.15B , last srl i guess :P
testing.......
EDIT:-
Am i that dump or what ... nother error... :S
http://i238.photobucket.com/albums/ff289/snoker/err.jpg
Luski14
11-22-2008, 11:22 AM
Wizzup Edgeville Fly Fisher.
Worked for 2 Hours, 58 Minutes and 24 Seconds
Banked 36 times, fishing at a rate of 301 Fish P/H and 17490xp P/H.
Trout caught: 534, at a rate of 179 p/h
Salmons caught: 363, at a rate of 122 p/h
----------------------------
0 : **** = T; Loc: Bank; R: ; B: 36 F lvl: 66; T: 0
This script will get me all da way to 99 I bet
senrath
11-23-2008, 06:52 AM
@senrath
- gonna try it again...
- and btw im using Scar Divi 3.15B , last srl i guess :P
testing.......
EDIT:-
Am i that dump or what ... nother error... :S
http://i238.photobucket.com/albums/ff289/snoker/err.jpg
Nah, it's not you. SMART is still messed up. If you really want to use it, look up the thread SMART Fixes in the Public Test Corner. Or, you can do what I did and remove all references to SMART from the script and just run it normally.
snoker
11-23-2008, 12:49 PM
Nah, it's not you. SMART is still messed up. If you really want to use it, look up the thread SMART Fixes in the Public Test Corner. Or, you can do what I did and remove all references to SMART from the script and just run it normally.
K Thanks man for helping :D ... ill try wat u said.. :p
artic myst
11-23-2008, 01:21 PM
for some reason i get this:
Line 4: [Error] (7:11): Unknown identifier 'SmartIsKeyDown' in script C:\Program Files\SCAR 3.15\includes\srl/srl/misc/smart.scar
dont know what it means, and how do i remove all references to SMART from the script?
snoker
11-23-2008, 02:48 PM
:( i really want this script to work .. i tried Following "SMART Fixies"
and i got this error :-
Invalid world number or corrupted world list. Please review your settings
also tried downloading the new worlds list and still having this problem...
N SORRY TO BOTHER U
TViYH
11-23-2008, 02:52 PM
Just take the SMART out and use it on the normal RS client.
Luski14
11-23-2008, 06:55 PM
Script is great, have gained 2 levels from it so far, (65 to 67) and haven't run into a problem until now.
I ran into the whirlpool, and didnt manually move spots to see how it worked, and well, whirlpool detection failed, and bye bye went my rod.
Walked back to the bank great, opened bank, and then didn't find my oterh 30 fly fishing rods there...So rod detection failed as well.
Other than that, love it
Wizzup?
11-23-2008, 07:05 PM
Script is great, have gained 2 levels from it so far, (65 to 67) and haven't run into a problem until now.
I ran into the whirlpool, and didnt manually move spots to see how it worked, and well, whirlpool detection failed, and bye bye went my rod.
Walked back to the bank great, opened bank, and then didn't find my oterh 30 fly fishing rods there...So rod detection failed as well.
Other than that, love it
I'll try to fix that soon.
Kemdo
11-23-2008, 08:05 PM
Hey!
This is an awesome script. But when ever i run it i get this error "Error starting SMART, check world prefix" (or something along that line) And then it closes scar. :( If anyone could help me with this problem, it would be greatly appereciated. Thanks.
TViYH
11-23-2008, 08:08 PM
Hey Kemdo? I recommend using the search button.
Kemdo
11-23-2008, 08:11 PM
I did all that, TortiseSVN ect. still no luck.
Thanks.
TViYH
11-23-2008, 08:13 PM
I never said anything about TortoiseSVN.
Search for "SMART Fixes".
Kemdo
11-23-2008, 08:13 PM
Nvm. I got it to work!! Thanks =)
Kemdo
11-23-2008, 11:04 PM
Sorry for the doubble post, but i was wondering if you could tell me how to make the script not change my private chat to friends, or on. cause i don't want to be pmmed while im not there.
Thanks.
Wizzup?
11-23-2008, 11:51 PM
Sorry for the doubble post, but i was wondering if you could tell me how to make the script not change my private chat to friends, or on. cause i don't want to be pmmed while im not there.
Thanks.
Try looking for a procedure called 'SetChat'.
Replace SetChat('friends', 2) with SetChat('off', 2);
That should do it.
Kemdo
11-23-2008, 11:56 PM
Ooh! Thanks so much Wizzup?. When ever you give me advice it always works lol. Thanks!! :)
~Kemdo
Luski14
11-24-2008, 12:23 AM
Where are you taking the direction of the script once you get it to a flawless state?
Adding sleep? More in-depth proggies (although in-depth already xD) etc...
Kemdo
11-24-2008, 06:09 PM
Here ya goo! Awesome script!! :)
----------------------------
Wizzup Edgeville Fly Fisher.
Worked for 3 Hours, 15 Minutes and 18 Seconds
Banked 38 times, fishing at a rate of 281 Fish P/H and 16240xp P/H.
Trout caught: 548, at a rate of 168 p/h
Salmons caught: 367, at a rate of 112 p/h
----------------------------
0 : *** = F; Loc: Fishing; R: ; B: 2 F lvl: 63; T: 11
1 : *** = T; Loc: Bank; R: Freaky Forester; B: 36 F lvl: 65; T: 176
----------------------------
/~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
| SRL 28 Randoms Report |
| www.srl-forums.com |
|~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
| SRL Logs : 13 |
| Talks : 1 |
| Sandwiches : 1 |
| Foresters Solved : 1 |
\~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
He stopped cause he got lost, but he had a Meat Pie!!! YUM
Lol, Thanks again Wizzup?
Kemdo
11-24-2008, 06:10 PM
Sorry my computer lagged and it doubble posted >.<
Anyways, Keep up the great work Wizzup?
Kryptic
11-24-2008, 11:07 PM
Love the script A++!! I'm using it now :)
~Kryptic
since it worked so dam well i figured id post the proggy that got stopped by the froggy :(
Wizzup Edgeville Fly Fisher.
Worked for 4 Hours, 14 Minutes and 42 Seconds
Banked 49 times, fishing at a rate of 288 Fish P/H and 16680xp P/H.
Trout caught: 740, at a rate of 174 p/h
Salmons caught: 484, at a rate of 114 p/h
----------------------------
0 : zezima(lol) = T; Loc: Bank; R: ; B: 49 F lvl: 68; T: 0
botsrs
11-25-2008, 11:16 PM
Yet another awesome script from Wizzup? ! Just as good as all the others.
Da Der Der
11-26-2008, 03:18 AM
Very, very nice script. Best fisher out there :) Here's my proggy:
Wizzup Edgeville Fly Fisher.
Worked for 3 Hours, 30 Minutes and 1 Seconds
Banked 31 times, fishing at a rate of 220 Fish P/H and 12270xp P/H.
Trout caught: 539, at a rate of 153 p/h
Salmons caught: 234, at a rate of 66 p/h
----------------------------
0 : acha = T; Loc: Bank; R: ; B: 8 F lvl: 36; T: 57
1 : anax = T; Loc: Bank; R: ; B: 12 F lvl: 37; T: 77
2 : wns = T; Loc: Bank; R: ; B: 11 F lvl: 36; T: 53
THIS SCRIPT OWNS WITHOUT SMART!
Ok, now, I stopped it manually, I'm sure it had another 5+ hours in it :D
Now I sat there and watched it run for a little bit.
Now a few suggestions:
1) You should make maybe make a CheckFishSpot function to see if the fishing spot is there and if it comes up true, then have it do some random things such as examining, rotating the screen, or random right clicking, instead of constantly clicking on the same fishing spot. If it comes up false, then you can check for a new fishing spot or walk to the other fishing spot.
3) Also, instead of JUST left clicking on the fishing spot, have it sometimes randomly right click on the fishing spot and click the Lure Fish option.
3) I understand you used the radial walking method, but it uses almost the same exact path each time when it walks to and from the bank. I also noticed that the path you take around the Yew tree building thing is to the right. I sat there for a while to watch which route that actual legit player (not autoers) take, and almost 100% of them take the path around the Yew building to the left, rather than the right. If there is a way to make a procedure so that it could walk to the left of the Yew tree building, I believe that it would make the script a little more undetectable. Heck, even if you could make a totally random procedure that would pick randomly a path weather to the left or right, that would be great too.
I don't even know if you're still updating this script, but those are a few suggestions that I would have to make the script more LEET, and that's exactly what it is. THIS SCRIPT ROCKS!
Worked for 4 Hours, 8 Minutes and 30 Seconds
Banked 51 times, fishing at a rate of 298 Fish P/H and 17140xp P/H.
Trout caught: 772, at a rate of 186 p/h
Salmons caught: 465, at a rate of 112 p/h
----------------------------
0 : *** = T; Loc: Bank; R: ; B: 51 F lvl: 70; T: 0
another good script wizzup ^^ <3
Sir_Oober
11-26-2008, 06:26 AM
http://i152.photobucket.com/albums/s193/dayday00davis1/rgesgsg.jpg
HOW DO I FIX THIS?
The_Shermanator
11-26-2008, 06:42 AM
http://i152.photobucket.com/albums/s193/dayday00davis1/rgesgsg.jpg
HOW DO I FIX THIS?
Check around the S.M.A.R.T. part of the forum, this has been stated numerous times how to fix.
-Shermanator
Heck, even if you could make a totally random procedure that would pick randomly a path weather to the left or right, that would be great too.
Couldnt you do that with case?
Like make 2 walking procedures
then:
case random(2) of
1 : WalkRightSide;
2 : WalkLeftSide;
end;
one of those kind of things?
Da Der Der
11-26-2008, 04:25 PM
Couldnt you do that with case?
Like make 2 walking procedures
then:
case random(2) of
1 : WalkRightSide;
2 : WalkLeftSide;
end;
one of those kind of things?
I think you could do that, ya. Wizzup?, what do you think?
Wizzup?
11-26-2008, 05:24 PM
I think you could do that, ya. Wizzup?, what do you think?
Yea, sure. I'll add it to the list. :)
Da Der Der
11-26-2008, 05:39 PM
:) K good. I mean, this script is ridiculously good, and I'm just trying to suggest some better techniques. Also, read my other post on page 32 with my other suggestions if you haven't yet because there are a few more there. :D
supersayian2224
11-27-2008, 02:50 AM
VERY GOOD! Started at level 20 fishing :]
Worked for 2 Hours, 18 Minutes and 24 Seconds
Banked 20 times, fishing at a rate of 208 Fish P/H and 11400xp P/H.
Trout caught: 366, at a rate of 158 p/h
Salmons caught: 116, at a rate of 50 p/h
Fly Rods picked up 1.
GAINED 18 FISHING LEVELS! THANKS!
gimillii1592
11-27-2008, 06:59 AM
Looks good...trying right now.
Worked for 4 Hours, 59 Minutes and 40 Seconds
Banked 59 times, fishing at a rate of 290 Fish P/H and 16900xp P/H.
Trout caught: 852, at a rate of 170 p/h
Salmons caught: 600, at a rate of 120 p/h
Fly Rods picked up 2.
20 secs from 5 hours :( lol
hutic
11-27-2008, 12:59 PM
Line 85: [Error] (88:48): Type mismatch in script C:\Program Files\SCAR 3.15\includes\srl/srl/misc/smart.scar i can never seem to get smart to work, by this what does it mean? update the smart file?
Da Der Der
11-27-2008, 04:32 PM
EDIT: Nvm, I'm stupid :)
supersayian2224
11-28-2008, 12:01 AM
Wizz, I just want to thank you so much. Within 2-3 hours of using this script my guy now has gained about 23 fishing levels. THANK YOU!
Kryptic
11-28-2008, 11:08 PM
Yea, Wizzup?
Keep up the awesome script's :)
This one is very good and i cna run it for 8 hours overnight and get 5-10 lvls :p
Thanks!!
~Kryptic
TViYH
11-30-2008, 03:41 PM
Manually stopped. I'll be running all day:
Worked for 59 Minutes and 48 Seconds
Banked 12 times, fishing at a rate of 300 Fish P/H and 17380xp P/H.
Trout caught: 181, at a rate of 181 p/h
Salmons caught: 119, at a rate of 119 p/h
Fly Rods picked up 1.
Nother manually stopped:
Worked for 42 Minutes and 18 Seconds
Banked 8 times, fishing at a rate of 283 Fish P/H and 16530xp P/H.
Trout caught: 116, at a rate of 164 p/h
Salmons caught: 84, at a rate of 119 p/h
Kiloch
12-07-2008, 03:32 PM
Awesome script, but it doesn's solve the whirlpool too well and even though my fishing rods are in the bank slot it can't find them for some reason.
Great script apart from those things! An update would be awesome!
Khazar
12-08-2008, 01:53 AM
I got the script to start working. It works, but eventually it'll make my character stop near the fishing spot and not do anything.
Worked for 50 Minutes and 25 Seconds
Banked 8 times, fishing at a rate of 235 Fish P/H and 13520xp P/H.
Trout caught: 121, at a rate of 143 p/h
Salmons caught: 77, at a rate of 91 p/h
Going to fishing Spot
NextPlayer(Active: False);
It has been 3 minutes and Runescape is not yet ready... Terminating.
Successfully executed
If I try making it run only 2 players, it will say:
[Runtime Error] : Out Of Range in line 46 in script C:\Users\XXX\Desktop\SRL Edgeville.scar
TViYH
12-08-2008, 01:57 AM
You need to change HowManyPlayers.
pahkina
12-09-2008, 08:00 PM
Line 1370: [Error] (17696:43): Invalid number of parameters in script C:\Users\Pahkina\Downloads\SRL Edgeville Fisher #20.2 Pub.scar
Graaaahhhh .. when i try run any-kind-of smart script, i get simillar to this..
i think its something bout my smart but cant be sure, i think i installed smart properly :(
Nose Smasher
12-09-2008, 11:20 PM
Line 1370: [Error] (17696:43): Invalid number of parameters in script C:\Users\Pahkina\Downloads\SRL Edgeville Fisher #20.2 Pub.scar
Graaaahhhh .. when i try run any-kind-of smart script, i get simillar to this..
i think its something bout my smart but cant be sure, i think i installed smart properly :(
Smart is weird right now... there are fixed for it, but you have to auto with it minimized... Forget who made fixes, but jus search "Smart Fixes" and you'll find it...
But I also have the same problem as Kiloch... I'll take a look at the code, see if I can find anything...
Kryptic
12-09-2008, 11:34 PM
Smart is weird right now... there are fixed for it, but you have to auto with it minimized... Forget who made fixes, but jus search "Smart Fixes" and you'll find it...
But I also have the same problem as Kiloch... I'll take a look at the code, see if I can find anything...
Of course, you can also remove SMART from the script. This works for any Script. Open the script, then hit ctrl and f and type "Smart" in the box and click find next. You have to delete every line that has the word Smart in it. Once you have done that it should work well, and will not use smart. That is what i do for this script, and many others that i may have problems with smart.
Hope this helps,
~Kryptic
ranger4lifeq
12-13-2008, 11:29 AM
Of course, you can also remove SMART from the script. This works for any Script. Open the script, then hit ctrl and f and type "Smart" in the box and click find next. You have to delete every line that has the word Smart in it. Once you have done that it should work well, and will not use smart. That is what i do for this script, and many others that i may have problems with smart.
Hope this helps,
~Kryptic
so this isn't out of date? i just need to remove all smart lines in it
and then i should work?
prime_subzer0
12-16-2008, 01:27 AM
wizzup can u help with this can u tell me wat i have to to make it work i keep getting a 1370error
lowstyle
12-16-2008, 08:21 AM
i'm getting this error as i always do on most scripts. Would be great if you could give me some feedback Wizzup?
Line 85: [Error] (88:46): Invalid number of parameters in script C:\Program Files\SCAR 3.15\includes\srl/srl/misc/smart.scar
EDIT: Thanks Kryptic works fine now :D
Mountain Lions Own?
12-21-2008, 06:38 AM
great script its working perfectly after I removed smart. Almost 72 fishing I'll post my over night proggy tomorrow.
poopy2177
12-23-2008, 05:44 AM
wow this is super duper i am going to do an over night proggy (= or try to i might run out of feathers well its already been running for
Worked for 27 Minutes and 14 Seconds
Banked 5 times, fishing at a rate of 275 Fish P/H and 15280xp P/H.
Trout caught: 89, at a rate of 195 p/h
Salmons caught: 36, at a rate of 79 p/h
so i will post my overnight one tomorow ;p
Wizzy
12-23-2008, 07:39 PM
Wizzup i have a problem, it doesnt find the rod or fether and logs out.
the rod is first inventory and the feather is in the secound. Im at the lower lsots at the edgevile bank. all settings are at low, brightness full and monitor is set to 32 true colour.
XabdullahX
12-25-2008, 03:10 PM
Thx !
Got me 10 lvls - from 40 to 50
Wizzup Edgeville Fly Fisher.
Worked for 1 Hours, 49 Minutes and 10 Seconds
Banked 19 times, fishing at a rate of 246 Fish P/H and 14220xp P/H.
Trout caught: 274, at a rate of 150 p/h
Salmons caught: 175, at a rate of 96 p/h
HarryJames
01-05-2009, 07:41 AM
Wizzup Edgeville Fly Fisher.
Worked for 4 Hours, 30 Minutes and 0 Seconds
Banked 49 times, fishing at a rate of 263 Fish P/H and 15160xp P/H.
Trout caught: 717, at a rate of 159 p/h
Salmons caught: 468, at a rate of 103 p/h
----------------------------
0 : edon = F; Loc: Bank; R: Frog Random; B: 49 F lvl: 50; T: 0
----------------------------
Got 10 levels!!
TY
XxsomethingxX
01-09-2009, 02:59 AM
...Does this work still?
...Does this work still?
nope. thats why a proggy is posted right above you. :D
*read thread before you post*
poopy2177
01-10-2009, 04:59 AM
sorry i got grouonded so i couldent do over night (i did but dont have proggy) anyways works amazing i got from level 42 i think to level 61 so great awsome! and made like 350k
William
01-12-2009, 04:32 AM
Wizzup Edgeville Fly Fisher.
Worked for 1 Hours, 40 Minutes and 38 Seconds
Banked 19 times, fishing at a rate of 281 Fish P/H and 16550xp P/H.
Trout caught: 262, at a rate of 156 p/h
Salmons caught: 210, at a rate of 125 p/h
Khazar
01-12-2009, 09:06 PM
----------------------------
Wizzup Edgeville Fly Fisher.
Worked for 41 Minutes and 4 Seconds
Banked 5 times, fishing at a rate of 182 Fish P/H and 9100xp P/H.
Trout caught: 125, at a rate of 182 p/h
----------------------------
My character was standing near the barbarian bridge... all of a sudden I see it "finding fishing spot" clicking south walking towards Draynor Manor. Good thing I was at my computer when this happened. All except that, it ran smoothly!
William
01-13-2009, 03:14 AM
Worked for 1 Hours, 53 Minutes and 6 Seconds
Banked 22 times, fishing at a rate of 291 Fish P/H and 16890xp P/H.
Trout caught: 329, at a rate of 174 p/h
Salmons caught: 221, at a rate of 117 p/h
Fly Rods picked up 1.
- w00t w00t 15 lvls from this so far?
Khazar
01-14-2009, 02:14 AM
----------------------------
Wizzup Edgeville Fly Fisher.
Worked for 3 Hours, 44 Minutes and 6 Seconds
Banked 33 times, fishing at a rate of 211 Fish P/H and 12090xp P/H.
Trout caught: 502, at a rate of 134 p/h
Salmons caught: 289, at a rate of 77 p/h
----------------------------
Very Good. No problems this run! Wo0t! Thank You!
grimy89098
01-16-2009, 02:22 PM
looks awsome, just what i've been looking for.
haven't been on in ages tho :/
anyways, thanks once again wizzup for an awsome script ^_^
problem:
Line 1340: [Error] (17652:43): Invalid number of parameters in script C:\Program Files\SCAR 3.15\Scripts\SRL Edgeville Fisher #20.2 Pub.scar
line 1340: Smartsetup(SmartPrefix, true, true, false);
i haven't looked into the smart thing yet so i might have to do that, will try to find fix for it
Quickmarch
01-16-2009, 02:39 PM
looks awsome, just what i've been looking for.
haven't been on in ages tho :/
anyways, thanks once again wizzup for an awsome script ^_^
problem:
Line 1340: [Error] (17652:43): Invalid number of parameters in script C:\Program Files\SCAR 3.15\Scripts\SRL Edgeville Fisher #20.2 Pub.scar
line 1340: Smartsetup(SmartPrefix, true, true, false);
i haven't looked into the smart thing yet so i might have to do that, will try to find fix for it
I'm the 2% that like rock/metal. Also, to fix the error replace the Smart stuff with this: SmartSetupEx(16, False, True, False);
Wait(1000);
SetTargetDC(SmartGetDC);
:)
Orbital
01-18-2009, 10:25 PM
Fantastic script, will always use it =]...
I wish I could post proggy but my dad shut down scar... heres picy
http://i44.tinypic.com/1424xtw.jpg
Jmanx
01-19-2009, 08:50 PM
I keep getting this Line 1370: [Error] (17985:43): Invalid number of parameters in script C:\Documents and Settings\Owner\Desktop\games\Scar\Fisher\SRL Edgeville Fisher #20.2 Pub.scar
trentuno30
01-20-2009, 09:07 AM
ummmm it wont right click and then click bait, it just left clicks and says i dont have a net any idea's?
oh and jmanx replace line 1370 and line 1371 with this:
SMARTSetupEx(2, False, True, False);
Wait(5000);
SetTargetDC(SmartGetDC);
repeat
wait(100);
until(SmartGetColor(253, 233)<>1118604);
rep+++ if i helped?
tuomari9
01-22-2009, 03:53 PM
Going to fishing Spot
No Rod..Logging out.
No Rod
No Feathers..Logging out.
No Feather
NextPlayer(Active: False);
Successfully executed
doesnt work for me :S... and not even with 20# rev.. dunno where is the problem.. i have feathers and rods placed right..
blink
01-23-2009, 10:17 PM
[Runtime Error] : Exception: Can't allocate the DIB handle in line 896 in script C:\Documents and Settings\Admin\My Documents\pro scripts\edge bank and fish.scar
gamer0n1
01-24-2009, 09:29 PM
I'm the 2% that like rock/metal. Also, to fix the error replace the Smart stuff with this: SmartSetupEx(16, False, True, False);
Wait(1000);
SetTargetDC(SmartGetDC);
:)
thanks for that! I had the same problem as he did until i read your post =D
does this have anti-randoms? cause i don't see it in script
thanks for that! I had the same problem as he did until i read your post =D
does this have anti-randoms? cause i don't see it in script
lol did you just ask if Wizzup had antirandoms... wow...
gamer0n1
01-25-2009, 12:34 AM
----------------------------
Wizzup Edgeville Fly Fisher.
Worked for 3 Hours, 44 Minutes and 9 Seconds
Banked 45 times, fishing at a rate of 300 Fish P/H and 17540xp P/H.
Trout caught: 648, at a rate of 173 p/h
Salmons caught: 475, at a rate of 127 p/h
----------------------------
0 : inj = T; Loc: Bank; R: ; B: 45 F lvl: 59; T: 0
----------------------------
Death-Magnetic
02-11-2009, 04:31 PM
At line 1370 is it supposed to be written true, true, false or something else?
Because i get an error at that line.
(I wanna use member world)
~D-M
rob2005
02-12-2009, 11:59 AM
At line 1370 is it supposed to be written true, true, false or something else?
Because i get an error at that line.
(I wanna use member world)
~D-M
Change line 1370 to:
SmartsetupEX(SmartPrefix, true, true, false);
Usage:
smartsetupex(world,members,signed,superdetail)
And line 15 to
SmartPrefix = 'xx';
Where xx is number of memberworld.
issamawan
03-11-2009, 12:10 PM
----------------------------
Wizzup Edgeville Fly Fisher.
Worked for 3 Hours, 24 Minutes and 55 Seconds
Banked 39 times, fishing at a rate of 285 Fish P/H and 16400xp P/H.
Trout caught: 596, at a rate of 174 p/h
Salmons caught: 378, at a rate of 110 p/h
----------------------------
0 : oolm = T; Loc: Bank; R: ; B: 39 F lvl: 63; T: 0
----------------------------
still works really well :),
issamawan
Sabzi
03-11-2009, 09:25 PM
There is no run? Like in ess miner :P (or I have missed it?) Anyway, I have put a run line in.
I got this proggy and its still runing but I am almost out of feather.
Nice script, thx.
EDIT: I have run out of feathers, last proggy.
----------------------------
Wizzup Edgeville Fly Fisher.
Worked for 59 Minutes and 30 Seconds
Banked 9 times, fishing at a rate of 225 Fish P/H and 11970xp P/H.
Trout caught: 188, at a rate of 189 p/h
Salmons caught: 36, at a rate of 36 p/h
----------------------------
0 : bzi = T; Loc: Bank; R: ; B: 9 F lvl: 33; T: 0
----------------------------
Punkgi
03-25-2009, 01:51 AM
Line 1340: [Error] (17652:43): Invalid number of parameters in script C:\Program Files\SCAR 3.15\Scripts\SRL Edgeville Fisher #20.2 Pub.scar
Smarter Child
03-25-2009, 02:17 AM
Update your SRL.
BKNYKavkaz
03-29-2009, 08:12 PM
Still works great
Wizzup Edgeville Fly Fisher.
Worked for 2 Hours, 1 Minutes and 22 Seconds
Banked 23 times, fishing at a rate of 284 Fish P/H and 16600xp P/H.
Trout caught: 332, at a rate of 164 p/h
Salmons caught: 243, at a rate of 120 p/h
----------------------------
0 :****** = T; Loc: Bank; R: ; B: 23 F lvl: 53; T: 112
----------------------------
Sabzi
04-05-2009, 04:35 PM
----------------------------
Wizzup Edgeville Fly Fisher.
Worked for 2 Hours, 15 Minutes and 41 Seconds
Banked 26 times, fishing at a rate of 275 Fish P/H and 15710xp P/H.
Trout caught: 402, at a rate of 177 p/h
Salmons caught: 222, at a rate of 98 p/h
----------------------------
0 : *** = T; Loc: Bank; R: ; B: 26 F lvl: 52; T: 0
----------------------------
woot I have beaten the 300 fish/hour limit
----------------------------
Wizzup Edgeville Fly Fisher.
Worked for 2 Hours, 27 Minutes and 19 Seconds
Banked 30 times, fishing at a rate of 305 Fish P/H and 17480xp P/H.
Trout caught: 469, at a rate of 190 p/h
Salmons caught: 280, at a rate of 114 p/h
----------------------------
0 : *** = T; Loc: Bank; R: ; B: 30 F lvl: 57; T: 0
----------------------------
apx900
04-07-2009, 11:52 PM
Its still running but heres the current Proggy:
Wizzup Edgeville Fly Fisher.
Worked for 43 Minutes and 50 Seconds
Banked 9 times, fishing at a rate of 307 Fish P/H and 17770xp P/H.
Trout caught: 136, at a rate of 186 p/h
Salmons caught: 89, at a rate of 121 p/h
apx900
04-08-2009, 11:47 AM
Wizzup Edgeville Fly Fisher.
Worked for 2 Hours, 26 Minutes and 1 Seconds
Banked 31 times, fishing at a rate of 308 Fish P/H and 17850xp P/H.
Trout caught: 445, at a rate of 182 p/h
Salmons caught: 305, at a rate of 125 p/h
----------------------------
0 : A*** = T; Loc: Bank; R: ; B: 31 F lvl: 84; T: 0
----------------------------
Going to fishing Spot
******** FOUND MOD ********
****
One minute has passed...
****
One minute has passed...
****
RuneScape has been updated. Script Terminated.
TomTuff
04-17-2009, 12:02 AM
Wizzup Edgeville Fly Fisher.
Worked for 2 Hours, 53 Minutes and 50 Seconds
Banked 26 times, fishing at a rate of 215 Fish P/H and 12260xp P/H.
Trout caught: 395, at a rate of 136 p/h
Salmons caught: 228, at a rate of 78 p/h
----------------------------
0 : yena = T; Loc: Bank; R: ; B: 26 F lvl: 53; T: 144
1 : pwn = F; Loc: Non-member; R: ; B: 0 F lvl: 0; T: 22
idk why but it didnt start the second account :S
noob-2
04-18-2009, 08:33 PM
Wizzup Edgeville Fly Fisher.
Worked for 2 Hours, 39 Minutes and 34 Seconds
Banked 30 times, fishing at a rate of 281 Fish P/H and 16290xp P/H.
Trout caught: 451, at a rate of 169 p/h
Salmons caught: 298, at a rate of 112 p/h
----------------------------
0 : vvw = T; Loc: Bank; R: ; B: 19 F lvl: 70; T: 94
1 : vvw = F; Loc: Bank; R: Found Mod; B: 6 F lvl: 70; T: 0
2 : vvw = F; Loc: Fishing; R: ; B: 5 F lvl: 0; T: 29
3 : vvw = F; Loc: Bank; R: ; B: 0 F lvl: 0; T: 0
4 : vvw = F; Loc: NoFeather; R: ; B: 0 F lvl: 0; T: 0
5 : vvw = T; Loc: Bank; R: ; B: 0 F lvl: 0; T: 0
Got a demon random.
lysolman00
04-19-2009, 12:12 AM
Wizzup?. Could you please Update the Script to work with SRL Revision 32 (and SCAR 3.20)? I would be greatful, because I am getting the error on Line 463: Unknown identifier 'FindTalk'. Thanks Wizzup?.
Dark Arcana
04-19-2009, 12:23 AM
Here is the fixed version, I didn't really do much.
lysolman00
04-19-2009, 01:05 AM
Thanks so much! I can get back to autoing but with antirandoms now. Woot! +rep
Nvm. I think there will be a lot of problems after this new one is fixed because of how everything got updated... Here's the new error...[Runtime Error] : Exception: in line 46 in script C:\Program Files\SCAR 3.20\includes\SRL/SRL/Core/Math.scar
noob-2
04-19-2009, 09:33 AM
what did you fix on it?
lysolman00
04-19-2009, 10:11 AM
I didn't yet...Need someone to do it. =/
BlueWorld
04-22-2009, 10:56 PM
Worked for 4 Hours, 31 Minutes and 20 Seconds
Banked 43 times, fishing at a rate of 225 Fish P/H and 13010xp P/H.
Trout caught: 620, at a rate of 137 p/h
Salmons caught: 400, at a rate of 88 p/h
lysolman00
04-23-2009, 06:18 AM
Nevermind, DarkArcana. The error that I got was only happening on my laptop that runs on Vista. This works fine for my laptop that runs on Windows XP.\
Actually, I take that back. There is a problem. When I have my feathers and my fly fishing rod in my inventory in the correct spots, the script thinks that I don't have them and says "No Feathers" "No Rod" and just logs me out & stops.
I wonder what the problem could be. Is it that there is new color detection in the SRL Revision 32 or something?
TomTuff
04-23-2009, 11:26 AM
Failed when compiling
Line 493: [Error] (17356:1): Unknown identifier 'FindTalk' in script C:\Users\Admin\Downloads\SRL Edgeville Fisher #20.2 Pub.scar
grawr is it just me or is scar 3.20 and rev 32 making all the scripts not work? >:(
It's just you, tomtuff. Look at the dates and the information. He posted this almost two whole years ago. Please check dates and other peoples posts before you post, okay? :)
Wizzup?
04-23-2009, 08:59 PM
It's just you, tomtuff. Look at the dates and the information. He posted this almost two whole years ago. Please check dates and other peoples posts before you post, okay? :)
The script still works, with some modifications.
We run u.s.
04-26-2009, 06:31 AM
Wait to fix 'Find Talk' problem, i need the new updates? ******************?
EDIT: Wizzup? you said, "some modification" lol i know basics to scripting,***********************, how do i fix it?
MAJOR EDIT: rofl, its srl plugins isn't it? the plugins right? just found that out... Wizzup, i can't move them when i click the "move plugins tab" how do i move em and into which folder?
Wizzup?
04-26-2009, 09:29 PM
Wait to fix 'Find Talk' problem, i need the new updates? ******************?
EDIT: Wizzup? you said, "some modification" lol i know basics to scripting,***********************, how do i fix it?
MAJOR EDIT: rofl, its srl plugins isn't it? the plugins right? just found that out... Wizzup, i can't move them when i click the "move plugins tab" how do i move em and into which folder?
About the plugins: http://www.villavu.com/wiki/index.php/Installing_and_Setting_up_SRL
We run u.s.
04-26-2009, 10:52 PM
ok i just re-installed scar, going back to 3.15 because 3.20 is making me mad. I can't run any scripts on 3.20 divi.
lysolman00
04-29-2009, 05:18 AM
Ok, this is really not working for me. I have SCAR 3.15 and SRL Revision 32 (SCAR 3.20 makes none of the scripts work). I get this error...
Line 463: [Error] (17333:1): Unknown identifier 'FindTalk' in script
Can someone post a fixed version for those of us who don't know how to fix it ourselves, please?
Thanks.
Wizzup?
04-29-2009, 05:19 AM
The script needs some modification, it doesn't work out of the box ATM.
Tomorrow is my last exam. Will update then hopefully. :)
Dynamite
04-29-2009, 05:20 AM
The script needs some modification, it doesn't work out of the box ATM.
Tomorrow is my last exam. Will update then hopefully. :)
OK. Good luck for tomorrow ;)
T~M
zealkctro
04-29-2009, 10:19 AM
I'm testing it atm.
Thx wizzup. Its a great script !
Griff
05-01-2009, 10:50 AM
I removed findtalk, and then took out the find rod and feather functions, because I was too lazy to make a dtm, and you cant lose you rod anyways now. I also just updated the smart in your main loop, and then the script works great. Here's a proggie.
Wizzup Edgeville Fly Fisher.
Worked for 1 Hours, 28 Minutes and 12 Seconds
Banked 18 times, fishing at a rate of 305 Fish P/H and 17710xp P/H.
Trout caught: 268, at a rate of 182 p/h
Salmons caught: 181, at a rate of 123 p/h
Stopped cause my SMART froze
jenovaclone99
05-01-2009, 08:03 PM
I removed findtalk, and then took out the find rod and feather functions, because I was too lazy to make a dtm, and you cant lose you rod anyways now. I also just updated the smart in your main loop, and then the script works great. Here's a proggie.
Wizzup Edgeville Fly Fisher.
Worked for 1 Hours, 28 Minutes and 12 Seconds
Banked 18 times, fishing at a rate of 305 Fish P/H and 17710xp P/H.
Trout caught: 268, at a rate of 182 p/h
Salmons caught: 181, at a rate of 123 p/h
Stopped cause my SMART froze
Can you upload a fixed version or send it to me? ;)
jacoby6000
05-01-2009, 08:44 PM
HOW TO FIX THE SCRIPT
Lines may vary due to different amount of players
Goto line 493
FindTalk;
Delete it
Maybe you wont have to do the next couple steps but i did
Go to line 554
WhirlPools := Whirlpools + 1;
Delete
Go to line 1079
Inc(Whirlpools);
Delete
Now things that you will definantly have to do
Goto line 1367
Smartsetup(SmartPrefix, true, true, false);
Change it to
SmartsetupEx([worldnumber without the brackets], true, true, false);
At the top where it says smart prefix at script setup, just put the number of the world you want IE '91' instead of 'World91'
Now change line 1353 and 1361 to
If Not true Then
Now go to
{
<----------------------------------------------------------------->
Function FindFeather: Boolean;
Description:
If Feather is not found, then logs out.
Made By: Wizzup?
<----------------------------------------------------------------->
}
Function FindFeather: Boolean;
Begin
If Not LoggedIn Then Exit;
Result := True;
If Not IsFeather Then
Begin
Result := False;
NoFeather := True;
Exit;
End;
End;
{
<----------------------------------------------------------------->
Function FindRod: Boolean;
Description:
If Rod is not found, then tries to retreive it.
Made By: Wizzup?
<----------------------------------------------------------------->
}
Function FindRod: Boolean;
Var
x, y, i: Integer;
Begin
If Not LoggedIn Then Exit;
Result := True;
If Not IsFishRod Then
Begin
NoRod := True;
Result := False;
Wait(4000+Random(1000));
MakeCompass('W');
Wait(500);
WriteLn('Lost Rod, retreiving it.');
For I := 0 To High(FishRodColors) Do
Begin
If FindObj(x, y, 'rod', FishRodColors[I], 0) Then
Begin
Wait(40);
Mouse(x, y, 0, 0, True);
Wait(100);
FFlag(0);
Wait(500);
MakeCompass('N');
If IsFishRod Then
Begin
WriteLn('Found rod: ' +IntToStr(I));
Result := True;
Rods := Rods + 1;
ReportVars[2] := ReportVars[2] + 1;
NoRod := False;
Exit;
End;
End Else WriteLn('Did not find the Rod: '+IntToStr(I));
End;
End;
End;
Delete it all
Now search for anything saying findrod or findfeather, and delete
Now its fixed, in the future, learn some scripting for yourself :fiery::p
+rep if this helped PLZ
We run u.s.
05-02-2009, 07:56 AM
Hey, jacoby6000, just wanted to say thanks for that...^^
Learning scripts right now, started about 2 weeks ago so cant really do much but ill get there.:)
jacoby6000
05-02-2009, 08:38 AM
no prob, and i really dont know much either, just enough to fix minor issues, but remember it wont auto respond now =P
We run u.s.
05-02-2009, 08:39 AM
SRL Compiled in 22813 msec
Welcome to Runescape.
[Runtime Error] : Out Of Range in line 325 in script C:\Program Files\SCAR 3.20\includes\SRL/SRL/Core/Login.scar
I need the includes right?
Btw, i changed
SmartsetupEx(SmartPrefix, true, true, false);
to the following:
SmartSetupEx(35, True, True, False);
and it ran smart, but gave me that error, any idea what to do?
I'll try to get the includes first, and see what, if anything, happens.
EDIT:I got the includes once again, and checked if they were inside srl/srl/core/login.scar and it was there... but still gives me the error "out of range in line...."
jacoby6000
05-02-2009, 09:16 AM
weird... are you using 3.20? and it sounds like you didnt setup your players right, but i really am not sure... i dont know how to fix include errors
ill PM you the code im currently using and if that doesnt help then its either your includes, or you edited it wrong
I used to always have a login.scar problem, so maybe its that, but idk
Plz post again if you still have the issue, or if its fixed, i dont wanna leave others in the dark and ill redo my tut if i told you to delete somthing that shouldnt be deleted
lysolman00
05-02-2009, 09:31 AM
Thanks jacoby6000! ++rep for you!
jacoby6000
05-02-2009, 09:31 AM
=D TY did it work?
lysolman00
05-02-2009, 09:32 AM
Yes. I'm running it now =)
jacoby6000
05-02-2009, 09:33 AM
Yes. I'm running it now =)
\/\/()()-|-
now get word out that wizzup?'s fisher is working again
lysolman00
05-02-2009, 09:42 AM
K, lol. Thanks again.
WYTE11
05-03-2009, 05:46 AM
Line 1288: [Error] (18151:15): Unknown identifier 'worldnumber' in script C:\Documents and Settings\Owner\Desktop\SRL Edgeville Fisher #20.2 Pub.scar
thanx for the help jacoby but form some reason i keep getting this error i thought it would have something to do with the 'world91' to '91' but im not sure ive tried several different ways
Kryptic
05-03-2009, 06:04 AM
HOW TO FIX THE SCRIPT
Lines may vary due to different amount of players
Goto line 493
FindTalk;
Delete it
Maybe you wont have to do the next couple steps but i did
Go to line 554
WhirlPools := Whirlpools + 1;
Delete
Go to line 1079
Inc(Whirlpools);
Delete
Now things that you will definantly have to do
Goto line 1367
Smartsetup(SmartPrefix, true, true, false);
Change it to
SmartsetupEx([worldnumber without the brackets], true, true, false);
At the top where it says smart prefix at script setup, just put the number of the world you want IE '91' instead of 'World91'
Now change line 1353 and 1361 to
If Not true Then
Now go to
{
<----------------------------------------------------------------->
Function FindFeather: Boolean;
Description:
If Feather is not found, then logs out.
Made By: Wizzup?
<----------------------------------------------------------------->
}
Function FindFeather: Boolean;
Begin
If Not LoggedIn Then Exit;
Result := True;
If Not IsFeather Then
Begin
Result := False;
NoFeather := True;
Exit;
End;
End;
{
<----------------------------------------------------------------->
Function FindRod: Boolean;
Description:
If Rod is not found, then tries to retreive it.
Made By: Wizzup?
<----------------------------------------------------------------->
}
Function FindRod: Boolean;
Var
x, y, i: Integer;
Begin
If Not LoggedIn Then Exit;
Result := True;
If Not IsFishRod Then
Begin
NoRod := True;
Result := False;
Wait(4000+Random(1000));
MakeCompass('W');
Wait(500);
WriteLn('Lost Rod, retreiving it.');
For I := 0 To High(FishRodColors) Do
Begin
If FindObj(x, y, 'rod', FishRodColors[I], 0) Then
Begin
Wait(40);
Mouse(x, y, 0, 0, True);
Wait(100);
FFlag(0);
Wait(500);
MakeCompass('N');
If IsFishRod Then
Begin
WriteLn('Found rod: ' +IntToStr(I));
Result := True;
Rods := Rods + 1;
ReportVars[2] := ReportVars[2] + 1;
NoRod := False;
Exit;
End;
End Else WriteLn('Did not find the Rod: '+IntToStr(I));
End;
End;
End;
Delete it all
Now search for anything saying findrod or findfeather, and delete
Now its fixed, in the future, learn some scripting for yourself :fiery::p
+rep if this helped PLZ
Why would you want to delete the find feather and rod procedure? I think that's an important procedure.
You know you could just learn how to update tpa's or at least dtms.
I'm trying to update them atm, will post if i get it to work. But, for now thanks for your help cause that is a way to fix it :)
Note: Instead of Deleting Whirlpools := +1 and the other whirlpools you can just go to line 19 and add Whirlpools as an integer. I don't think you can call it scripting when all your doing is deleting :o
WYTE11
05-03-2009, 06:06 AM
[Runtime Error] : Exception: Access violation at address 697D5059 in module 'Embedded_SMART.dll'. Read of address 00000000 in line 85 in script C:\Program Files\SCAR 3.20\includes\srl/srl/misc/smart.scar
smart is giving this error after i tried this fix
Wizzup?
05-03-2009, 07:13 AM
How will this script work without rod and feather stuff finding?
Also, I prefer it if no one posts/attaches my scripts. :)
Kryptic
05-03-2009, 07:25 AM
Thats what i said lol... they were taking it out of the script cause it wasn't working? lol
I just thought i'd give them a hand w/ it lol. Srry about that.
Removed.
~Kryptic
Wizzup?
05-03-2009, 07:28 AM
Thats what i said lol... they were taking it out of the script cause it wasn't working? lol
I just thought i'd give them a hand w/ it lol. Srry about that.
Removed.
~Kryptic
Thanks. :)
Kryptic
05-03-2009, 07:36 AM
Np, Can't wait till Your Fly Fisher and Ess Miner are updated :)
They are like the best scripts ever!!! :D
~Kryptic
zealkctro
05-04-2009, 07:22 AM
The script works perfectly if some of the procedures are removed.
Your scripts are amazing :)
Wizzup?
05-04-2009, 07:24 AM
The script works perfectly if some of the procedures are removed.
Your scripts are amazing :)
Thank you. :)
I hope to have a version that works out of the box again, soon.
zealkctro
05-05-2009, 06:53 AM
----------------------------
Wizzup Edgeville Fly Fisher.
Worked for 11 Hours, 22 Minutes and 32 Seconds
Banked 137 times, fishing at a rate of 270 Fish P/H and 15530xp P/H.
Trout caught: 1888, at a rate of 165 p/h
Salmons caught: 1188, at a rate of 104 p/h
----------------------------
0 : on99 = T; Loc: Bank; R: ; B: 137 F lvl: 70; T: 652
----------------------------
This is my proggy for 1 player
/~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
| SRL 32 Randoms Report |
| www.srl-forums.com |
|~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
| SRL Logs : 27 |
| ScapeRunes Solved : 1 |
| Pillory's Solved : 1 |
| Beekeepers Solved : 1 |
\~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
but it is stopped by the drill's demon random.
WYTE11
05-05-2009, 10:35 AM
Worked for 51 Minutes and 27 Seconds
Banked 10 times, fishing at a rate of 291 Fish P/H and 16830xp P/H.
Trout caught: 152, at a rate of 177 p/h
Salmons caught: 98, at a rate of 114 p/h
----------------------------
0 : ray = T; Loc: Bank; R: ; B: 10 F lvl: 61; T: 43
1 : = F; Loc: ; R: ; B: 0 F lvl: 0; T: 0
ye mine works fine but doesnt seem to solve any of the randoms not sure what the problem is im usin scar 3.20
zealkctro
05-05-2009, 01:51 PM
try to use scar3.15b
jacoby6000
05-05-2009, 08:36 PM
How will this script work without rod and feather stuff finding?
well every time ive tried to make a DTM it doesnt work, and you cant lose your rod now anyways, and feathers.... well sucks for you if you run out =P
jacoby6000
05-05-2009, 08:39 PM
Why would you want to delete the find feather and rod procedure? I think that's an important procedure.
You know you could just learn how to update tpa's or at least dtms.
I'm trying to update them atm, will post if i get it to work. But, for now thanks for your help cause that is a way to fix it :)
I know how to do that, but... it never works for me. Help would be appreciated
Note: Instead of Deleting Whirlpools := +1 and the other whirlpools you can just go to line 19 and add Whirlpools as an integer. I don't think you can call it scripting when all your doing is deleting :o
as i said in my earlier post, i dont know very much, just enough to "fix" minor issues, and it was late and i wasnt thinking straight
and you do need some scripting knowledge to know what you can remove without jacking up the entire script
footballjds
05-05-2009, 08:41 PM
Thank you. :)
I hope to have a version that works out of the box again, soon.
can u comment on how soon?
ill be ur #1 tester if u need one, for both ur fisher and/or your essence miner.
i have an army i could use to test ;)
jacoby6000
05-18-2009, 10:18 AM
OK i fixed it for real this time, I fixed the DTMs, and switched the bimaps to DTMs so they wouldn't ave to be changed again unless RS changes the Icon. Nothing was removed except findtalk, because it doesn't work with SRL ATM
If you want it ill email it to you if you PM me, and if wizzup wants to look at it to see if he could upload it he will tell me
(im aware wizzup could finish it himself, but hes a busy man(if ya know what i mean))
Remember to keep posting proggies
Powered by vBulletin® Version 4.2.1 Copyright © 2024 vBulletin Solutions, Inc. All rights reserved.