SCAR Code:{*******************************************************************************
procedure DropAllEx;
By: Tickyy
Description: Drops all the items from the first given position, till to the second given position
*******************************************************************************}
procedure DropAllEx(z_from, z_to: integer);
var
i : Integer;
begin
for i := z_from to z_to do
DropItem(i);
end;
Like it?

