PDA

View Full Version : [Request] Item dropper



vmike
03-15-2013, 02:14 AM
Can anyone make a item dropper lets say im wcing but dont want the logs can i just click play on simba and it drops everything in my invo?

Neodymium
03-15-2013, 02:32 AM
program new;
{$define SMART8}
{$i SRL/SRL.simba}
{$i P07Include.simba}
//{$i SRL-OSR/SRL/SRL.simba}

begin
SetUpSRL;
ActivateClient;
SetUpP07Include;
DropAll;
end.

That should be it really. I haven't tried it out though. :p
Uncomment stuff whether you use SRL-OSR or the P07 Include.

Edit: Tested with SRL-OSR and works fine.

rj
03-15-2013, 02:38 AM
are you the same guy from sythe that asked for this?yohojo posted the code for it

vmike
03-15-2013, 03:01 AM
ah thanks but is there any way i can keep it from droping the top row? forgot i want to use this power fishing!

And i use a browser not the simba cient

this is what i'm working with

http://i.imgur.com/BZkwONE.png

Caniz
03-15-2013, 03:03 AM
program Dropper;
{$I SRL/SRL.Simba}
{$I P07Include.Simba}

begin
SetupP07Include;
ActivateClient;
Wait(100);

If (P07_InvFull) then
begin
P07_DropAllExcept([1,2]);
end else
TerminateScript;
end.


Change the "DropAllExcept" numbers to your liking, first row would be [1,2,3,4] :)

And yay, my first script ever, coded that couple nights ago :p Wish me luck in the future ;)
Edit: Posted older test version, updated it :p

Neodymium
03-15-2013, 03:05 AM
Edit: ^ That works too.

I think...

program new;
{$define SMART8}
{$i SRL/SRL.simba}
{$i P07Include.simba}
//{$i SRL-OSR/SRL/SRL.simba}

var
i: Integer;

begin
SetUpSRL;
ActivateClient;
SetUpP07Include;
for i := 5 i to 28 do
DropItem(i);
end.

vmike
03-15-2013, 03:23 AM
Thank you so much guys I got it! Thanks so much (: