Im looking for a dropper that drops everything in inv but not the first item and it dosent need anything just dont get me banned
Im looking for a dropper that drops everything in inv but not the first item and it dosent need anything just dont get me banned
dropto(2,28);
somthing like this
please dont ask stupid things for this use search button
~Hermen
Dude a dropper is super easy to make, do you want it to drop whenever you push ctrl or f2 or something? Ctrl is best since it wont change to your stat page. To drop whenever your inventory is full all you have to do is something like this:
(written for SCAR 2.03 and SRL 3.6)
SCAR Code:program New;
{.include srl/srl.scar}
const
InvSpaceDrop = 1-28;
begin
SetupSRL;
repeat
if InvFull then
DropItem(InvSpaceDrop);
until(false)
end.
SCAR Code:{*******************************************************************************
procedure DropAll;
By: Lorax
Description: Drops all items
*******************************************************************************}
procedure DropAll;
var
i: Integer;
begin
for i := 1 to 28 do
DropItem(i);
end;
The best way to contact me is by email, which you can find on my website: http://wizzup.org
I also get email notifications of private messages, though.
Simba (on Twitter | Group on Villavu | Website | Stable/Unstable releases
Documentation | Source | Simba Bug Tracker on Github and Villavu )
My (Blog | Website)
He doesn't want to drop the first item =]
use this
SCAR Code:{*******************************************************************************
procedure DropExcept(I: Array of Integer);
By: Spky
Description: Drops all except item(s) specified by inventory number(s).
*******************************************************************************}
procedure DropExcept(I: array of Integer);
var
InvSpot, En: Integer;
begin
for InvSpot := 1 to 28 do
begin
if (not (InvSpot = I[En])) then
DropItem(InvSpot) else
En := En + 1;
end;
end;
SCAR Code:Program AutoDropper
{.include SRL/SRL.scar}
begin
Drop(2,28);
end.
Even If You Are On Your Way, You Will Get Run Over If You Just Sit There.
![]()
-ILikePie1995.
My Best Script I Yet Made, Go Check It Out, Its In The Fighting Section. Look For UndeadKiller!
GET FREE CASH!!!READ ALL ABOUT IT!!!
http://www.AdPaid.com/ptr/pages/join...d=ilikepie1995
JOIN AdPaid.Com NOW!!!ITS OWNAGE!!!
http://www.AdPaid.com/ptr/pages/conf...d=ilikepie1995
none works...
There are currently 1 users browsing this thread. (0 members and 1 guests)