Hey I'm requesting an AutoDropper. I need to use it for dropping Iron ore in the Al-Kharid mine. Don't make it completely detectable but make it fairly quick. Thank you. ^_^ It doesn't have to be SRL either.
Printable View
Hey I'm requesting an AutoDropper. I need to use it for dropping Iron ore in the Al-Kharid mine. Don't make it completely detectable but make it fairly quick. Thank you. ^_^ It doesn't have to be SRL either.
Do you mean a powerminer? or just the dropping while you legitly mine?
if you mean powerminer, look around.
Just dropping after I legitly mine.
Edit: Nevermind it didnt work :(.
SCAR Code:program AutoDrop;
{.include SRL\SRL.scar}
begin
SetupSRL;
BenMouse:=False;
MouseSpeed:=3;
DropAll;
end;
should be ok :D
Yea but that drops allllll in the inventory. I dont know if you made him that on purpose lol. But this procedure will drop from your specified slot to the last slot you pick.
That will drop from 2st inventory slot to the 28th/last inventory slot.SCAR Code:DropTo(1,28);
i dont know what you mean by 'on purpose' i didnt mean anything bad to him.
you can run that in the background and it will drop everything in slots 2 to 28 when your inventory becomes full. it will not lag and it will kick in automatically... unless you press "q"Code:begin
setupsrl
repeat
if invcount=28 then begin
dropto(2,28);
endif
sleep(1000+random(500));
until keydown('q')
end.
Nevermind, I made it on my own.
lol that's more like it... good for u