Advertisement
salahzar

kill all NPC

Dec 21st, 2014
699
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. default
  2. {
  3.     state_entry(){
  4.         llSetText("Click per cancellare tutti i NPC",<1,1,1>,1);
  5.     }
  6.    
  7.     touch_start(integer number)
  8.     {
  9.         list avatars = llList2ListStrided(osGetAvatarList(), 0, -1, 3);
  10.         integer i;
  11.         llSay(0,"NPC Removal: No avatars will be harmed or removed in this process!");
  12.         for (i=0; i<llGetListLength(avatars); i++)
  13.         {
  14.             string target = llList2String(avatars, i);
  15.             osNpcRemove(target);
  16.             llSay(0,"NPC Removal: Target "+target);
  17.         }
  18.     }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement