It seems as though, Runescape have changed something. If you could edit the script and fix it, it would be greatly appreciated.
SCAR Code:
{
[-| Drags FlyFishing Dropper |-]
[-|This was just for personal use I|-]
[-|thought I would share with you|-]
[-|guys :) |-]
[-|This is for whatever you need. |-]
[-|It will drop EVERYTHING from |-]
[-|a slot you set to slot 28! |-]
[-|----------------------------------|-]
Program DragsFlyDropper;
{.include SRL/srl.scar}
Const
FKey = 2;//Which FKey you want to use to start the dropping.
DropAt = 2//How many inventory spaces to not drop at top
Procedure DragsDrop;
Begin
GameTab(4);
wait(350);
DropToPosition(DropAt+1,28);
wait(500);
End;
Begin
Repeat
If(IsFkeydown(Fkey))then
DragsDrop;
wait(500)
Until(False)
End.