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?
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?
That should be it really. I haven't tried it out though.Code:program new; {$define SMART8} {$i SRL/SRL.simba} {$i P07Include.simba} //{$i SRL-OSR/SRL/SRL.simba} begin SetUpSRL; ActivateClient; SetUpP07Include; DropAll; end.
Uncomment stuff whether you use SRL-OSR or the P07 Include.
Edit: Tested with SRL-OSR and works fine.
Last edited by Neodymium; 03-15-2013 at 02:37 AM.
are you the same guy from sythe that asked for this?yohojo posted the code for it
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
Last edited by vmike; 03-15-2013 at 03:09 AM.
Simba Code: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 agoWish me luck in the future
Edit: Posted older test version, updated it![]()
Last edited by Caniz; 03-15-2013 at 03:05 AM.
Edit: ^ That works too.
I think...
Simba Code: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.
Thank you so much guys I got it! Thanks so much (:
There are currently 1 users browsing this thread. (0 members and 1 guests)