I needed this myself so i wrte this in like 2min :P
It drops on F1 key, terminates script on F2 key.
With my full guth on i'd rather not die with a fishing script, so this will just drop.
UPDATED added some stuff
SCAR Code:program AdvancedAutoDropper;
{.include srl\srl.scar}
//Press F1 to drop
//Press F2 to stop dropping
//Press F3 to stop script
////////////////////////////////MADE BY FLOOR66\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
////////////////////////////////////SETUP:\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
//////////////////////////////////////\/\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
const
Speed = 35; //Mouse Speed
Spot = 2; //Wich inv spot to start on (e.x with a small fishing net it's place 2)
///////////////////////////////////////\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
/////////////////////////////////END OF SETUP\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
//////////////////////////////////////\/\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
procedure Drop;
var F : Integer;
begin
if (InvFull) then
begin
for F := Spot to 28 do
DropItem(F);
Exit;
end else
Writeln('Inventory not full');
Exit;
end;
begin
SetUpSRL;
MouseSpeed := Speed;
case random(5) of
0: Disguise('iTunes');
1: Disguise('Norton Internet Security');
2: Disguise('Photoshop CS3 ~ hamza.bmp');
3: Disguise('RuneScape World Map - Internet Explorer 7');
4: Disguise('MSN Messenger');
end;
repeat
if (IsFKeyDown(1)) then
begin
GameTab(4);
Wait(1000);
Drop;
repeat
Status('Dropping.');
wait(250);
Status('Dropping..');
wait(250);
Status('Dropping...');
wait(250);
until(InvEmpty or IsFKeyDown(2));
Status('-------------------');
end;
until(IsFKeyDown(3) or (LoggedIn = False));
end.




Reply With Quote







