Did another one:
=-=-=-=-=-=-=-= Heavy-rodder 1.35 by Flight =-=-=-=-=-=-=-=
Time Running: 3 Hours, 7 Minutes and 44 Seconds
Trout caught: 926
Salmon caught: 693
Sturgeon caught 649
Fishing XP 146730
Breaks: 1
Did another one:
=-=-=-=-=-=-=-= Heavy-rodder 1.35 by Flight =-=-=-=-=-=-=-=
Time Running: 3 Hours, 7 Minutes and 44 Seconds
Trout caught: 926
Salmon caught: 693
Sturgeon caught 649
Fishing XP 146730
Breaks: 1
Great script. I had to replace the dropping procedure with my own, though. Other than that, it seems to be working pretty flawless.
TYI, your dropping procedure just "hovered" in a wierd manner through my inventory. I think it was "thinking" that it was clicking 'drop' when it wasnt. It may be a problem with my SRL include, but maybe not. I saw someone had the same problem with your 'regular' barbarian fisher. :-) No worries though; its working great after replacing that procedure.
So far your script has gotten me 17,5k fishing xp, averaging 20k/h. I do have quite a low fishing level - and since the script seems to be fishing most of the time as it's supposed to, I expect to gain much better xp rates at higher levels.
All in all a great script. Thanks a lot.![]()
I believe in miracl... colour macroing.
RS is a conspiracy to ensure the birth of new programmers!
this script is great, apart from the faulty drop procedure, and ive already leveled from 85 to 88 wiv this (averaging 60-63k exp ph). this script deserves a thumbs up or rep increase, i dunno?
As said before, awesome script apart from the drop function that isn't working.
However, implementing your own drop function takes about a minute and it makes leechers having to do some coding
Keep up the great scripts, Flight!![]()
Fantastic script, has leveled me from 65-73. Experience has varied but I assume it's at near best for each level. Aside from the dropping this script is flawless.
works great after i fixed the code
Last edited by xjasonz; 01-25-2012 at 04:32 AM.
Works great
What part of the code do i need to change to get it to drop.
Help would be much appreciated.
Check out this post: http://villavu.com/forum/showpost.ph...&postcount=257
Current projects:
[ AeroGuardians (GotR minigame), Motherlode Miner, Blast furnace ]
"I won't fall in your gravity. Open your eyes,
you're the Earth and I'm the sky..."
This is because high alch requires game tick and hence interrupts fishing. The actual method is actually to use low alch (u'll be surprised that this is actually the diff b/w high and low alch other than the money produced). The rate in which u cast the low alch must also be slow enough to ensure that there is no queuing involved.
Current projects:
[ AeroGuardians (GotR minigame), Motherlode Miner, Blast furnace ]
"I won't fall in your gravity. Open your eyes,
you're the Earth and I'm the sky..."
Tom's dropping procedure doesn't seem to make a difference even after implementing it into version 1.35. :\
The script will hover the mouse around the inventory in an extremely weird manner. It also manages to click the friends chat icon somehow.
Last edited by Quintessence; 01-27-2012 at 09:31 AM.
Did the fisher manage to catch a fish and high alched at the same tick (within 0.6sec)? "fishing event" may have been paused and resume automatically after high alched.
I didnt use the script since i have 99 long ago, but thats what the rs wikia says anyway:
Since this spell has the same cost as High Level Alchemy when cast with a fire staff (1 nature rune) and since it produces less gold, most players view it as useless. However, Low Level Alchemy has one advantage over its higher counterpart: unless a player casts it rapidly enough for it to queue, the spell will not disrupt certain training actions, like woodcutting, fishing, and mining. Thus, a player can simply fish, mine, or woodcut normally while simultaneously alching noted items. Alternatively, a player can speed up their training in those skills by low alching their fish, ores, or logs instead of dropping or banking them.
I always look up at rs wikia for any skills that i want to train, its rather informative and taught me alot things that i'd never know if not for it![]()
[Error] (36:32): Type mismatch at line 35
Compiling failed.
line 35 LampSkill := 'Fishing';
Current projects:
[ AeroGuardians (GotR minigame), Motherlode Miner, Blast furnace ]
"I won't fall in your gravity. Open your eyes,
you're the Earth and I'm the sky..."
i forgot about that, someone mentioned that to me already about a different script i need to pay more attention haha thanks flight
My mouse is just hovering overtop of my character. It doesn't click the fishing spot to begin fishing. Anyone else having the same issue or know what I screwed up? Any help is appreciated. Thanks.
I did that but it still doesn't begin fishing. It just hovers around my character and makes green dots all over the top left of the screen
after i replaced procedure with this one from here: http://villavu.com/forum/showpost.ph...&postcount=257
and updated srl to 5
it still wont drop fish, just hovers examine button, or sometimes click examine
maybe someone can rewrite procedure withEdit:ChooseOption('rop');
Replace FastDropSlot
with this one:
and it should work. It works for me...Procedure FastDropSlot(Slot: Integer);
Var
X,Y: Integer;
TB: TBox;
begin
Case Slot of
1: TB := IntToBox(564,214,598,244);
2: TB := IntToBox(606,214,640,244);
3: TB := IntToBox(648,214,682,244);
4: TB := IntToBox(690,214,724,244);
5: TB := IntToBox(564,250,598,280);
6: TB := IntToBox(606,250,640,280);
7: TB := IntToBox(648,250,682,280);
8: TB := IntToBox(690,250,724,280);
9: TB := IntToBox(564,286,598,316);
10: TB := IntToBox(606,286,640,316);
11: TB := IntToBox(648,286,682,316);
12: TB := IntToBox(690,286,724,316);
13: TB := IntToBox(564,322,598,352);
14: TB := IntToBox(606,322,640,352);
15: TB := IntToBox(648,322,682,352);
16: TB := IntToBox(690,322,724,352);
17: TB := IntToBox(564,358,598,388);
18: TB := IntToBox(606,358,640,388);
19: TB := IntToBox(648,358,682,388);
20: TB := IntToBox(690,358,724,388);
21: TB := IntToBox(564,394,598,424);
22: TB := IntToBox(606,394,640,424);
23: TB := IntToBox(648,394,682,424);
24: TB := IntToBox(690,394,724,424);
25: TB := IntToBox(564,430,598,460);
26: TB := IntToBox(606,430,640,460);
27: TB := IntToBox(648,430,682,460);
28: TB := IntToBox(690,430,724,460);
end;
MouseSpeed := RandomRange(26,39);
MouseBox(TB.X1, TB.Y1, TB.X2, TB.Y2, mouse_right);
Wait(RandomRange(20, 75));
ClickMouse2(False);
ChooseOption('rop');
begin
Wait(RandomRange(20, 75));
end;
end;
Last edited by selgius7; 01-30-2012 at 01:55 PM.
Amazing script.
Time Running: 2 Hours, 27 Minutes and 54 Seconds
Trout caught: 852
Salmon caught: 630
Sturgeon caught 624
Fishing XP 136620
Breaks: 0
after update it wont work for me, after it presses on fishing spot, then after 5~ it presses again on minimap fishing spot icon... wtf ?
srry 4 my bad english
Last edited by selgius7; 01-31-2012 at 03:40 PM.
That's because this script checks if you correctly clicked on the fishing spot or if you misclicked. Incase you haven't noticed, mouse click colors have very recently been changed in Runescape. SRL will need to be updated to adjust to this change. Have patience.
Current projects:
[ AeroGuardians (GotR minigame), Motherlode Miner, Blast furnace ]
"I won't fall in your gravity. Open your eyes,
you're the Earth and I'm the sky..."
There are currently 1 users browsing this thread. (0 members and 1 guests)