Results 1 to 2 of 2

Thread: DropTo

  1. #1
    Join Date
    Feb 2008
    Location
    Nerdville
    Posts
    38
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default DropTo

    What is the DropTo function in the new SRL?
    If a dude says something and his girlfriend isn't there, is he still wrong?

  2. #2
    Join Date
    Dec 2006
    Location
    SC
    Posts
    692
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    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;

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Unknown identifier 'DropTo'
    By Aser in forum OSR Help
    Replies: 10
    Last Post: 01-17-2009, 10:09 PM
  2. A simple DropTo(3,28); help!
    By dopeness in forum OSR Help
    Replies: 3
    Last Post: 10-13-2008, 04:39 PM
  3. Replies: 2
    Last Post: 03-25-2008, 12:23 AM
  4. My own DropTo replacement
    By Floor66 in forum Research & Development Lounge
    Replies: 9
    Last Post: 02-13-2008, 06:44 PM
  5. DropTo?
    By Prince in forum OSR Help
    Replies: 14
    Last Post: 02-04-2008, 08:49 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •