Advertisement
Jym_Nova

Give All On Touch

Mar 10th, 2022
1,778
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // Written By: Ĵyм Иøνค (Jym Nova)
  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.  
  19. default{
  20.     touch_start(integer total_number){
  21.         integer i;
  22.         for (i=0;i<total_number;i++){
  23.             key target = llDetectedKey(i);
  24.             list inv;
  25.             integer i;
  26.             integer max = llGetInventoryNumber(INVENTORY_ALL);
  27.             for (i=0; i<max; ++i){
  28.                 if (llGetInventoryType(llGetInventoryName(INVENTORY_ALL, i)) != INVENTORY_SCRIPT){
  29.                     inv += [llGetInventoryName(INVENTORY_ALL, i)];
  30.                 }
  31.             }
  32.             llGiveInventoryList(target, llGetObjectName(), inv);
  33.         }
  34.     }
  35. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement