PDA

View Full Version : Help with fishing script



sirgriffen69
10-16-2014, 07:52 AM
Alright here's my problem, i have a simple fish and drop script set up. Except i can't get the dropping aspect of it to work... I'm doing it on a pserver of a 668 revision. I have it set to what should fish an inventory of lobsters and then drop all but the lobster cage. But....i get this error "Error: Out of Proc Range at line 432" and i cannot find out why it's doing this.
If anybody could help me out in depth using something like skype, it would be much appreciated. Just reading all this stuff is hard to understand for me.



my script




program fishing;
{$i srl-osr/srl.simba}

procedure fish;
begin repeat
begin
movemouse(261, 216);
wait(300);
clickmouse(261, 216, mouse_left);
end;
until invfull;
end;

procedure drop;
begin
DropAllExcept([1]);
end;

begin
fish;
drop;
end.