What is the DropTo function in the new SRL?
What is the DropTo function in the new SRL?
If a dude says something and his girlfriend isn't there, is he still wrong?
SCAR Code:// * procedure DropItem(i: Integer); // * by Lorax
// * procedure DropAll;
Those are the only two that drop. No DropTo (as far as I can see.)
However, you could make your own DropTo procedure:
SCAR Code:procedure DropTo(First, Last: Integer); //First = inventory slot to start with; Last = inventory slot to end with
var i: Integer;
begin
for i := First to Last do
DropItem(i);
end;
There are currently 1 users browsing this thread. (0 members and 1 guests)