Guest User

Untitled

a guest
Dec 6th, 2018
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. default
  2. {
  3.     touch_start(integer num_detected)
  4.     {
  5.         llAllowInventoryDrop(TRUE);
  6.         llSetTimerEvent(15.0);//time in seconds
  7.         llWhisper(PUBLIC_CHANNEL, "Drop within the next 15 seconds!");
  8.     }
  9.  
  10.     timer()
  11.     {
  12.         llSetTimerEvent(0.0);
  13.         llAllowInventoryDrop(FALSE);
  14.     }
  15. }
Add Comment
Please, Sign In to add comment