DropTo was taken out of SRL?
SCAR Code:
{*******************************************************************************
Procedure DropAllExcept(A : Array of Integer);
By: Sand Storm
Description: Drops everything except the user defined inventory spaces.
*******************************************************************************}
procedure DropAllExcept(A : Array of Integer);
var
i: Integer;
begin
If (Not (LoggedIn)) Then Exit;
For I:=1 To 28 Do
if not(InIntArray(a, i)) then
DropItem(i);
end;
Add that in and change it to this:
SCAR Code:
true : DropAllExcept([1]);
~Sandstorm