Jym_Nova

Deliver Folder (no scripts)

Jul 2nd, 2017
329
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // Written By: Ĵyм Ѡҩℓƒ (Jym Resident)
  2. /*
  3. LICENCE:
  4. This program is free software: you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation, either version 3 of the License, or
  7. any later version.
  8.  
  9. This program is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12. GNU General Public License for more details.
  13.  
  14. You should have received a copy of the GNU General Public License
  15. along with this program.  If not, see <http://www.gnu.org/licenses/>.
  16. or you may visit - http://license.idjhost.com/
  17. */
  18. // DESCRIPTION
  19. // Delivers folder based on the name you type below without scripts
  20.  
  21. integer PRICE = 10;
  22. string folderName = "Name of the folder";
  23.  
  24. default {
  25.     state_entry() {
  26.         llSetPayPrice(PAY_HIDE, (list)PRICE);
  27.     }
  28.     money(key id, integer amount) {
  29.         list inv;
  30.         integer i;
  31.         integer max = llGetInventoryNumber(INVENTORY_ALL);
  32.         for (i=0; i<max; ++i)
  33.         {
  34.             if (llGetInventoryType(llGetInventoryName(INVENTORY_ALL, i)) != INVENTORY_SCRIPT)
  35.             {
  36.                 inv += [llGetInventoryName(INVENTORY_ALL, i)];
  37.             }
  38.         }
  39.         llGiveInventoryList(id, folderName, inv);
  40.     }
  41. }
Add Comment
Please, Sign In to add comment