Advertisement
Guest User

Untitled

a guest
Feb 11th, 2019
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. default
  2. {
  3.     state_entry()
  4.     {
  5.         llSay(0, "Hello, Avatar!");
  6.     }
  7.  
  8.     touch_start(integer total_number)
  9.     {
  10.          if (llDetectedKey(0)==llGetOwner())
  11.         {
  12.             llSay(0,"i own this");
  13.         }
  14.         else
  15.         {
  16.             llSay(0,"you are not the owner");
  17.         }
  18.            
  19.     }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement