Advertisement
Gayngel

User Functions Lesson 1, Box 1, Script 1 Incomplete Script

Apr 27th, 2016
437
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. key Owner;
  2. key av;
  3.  
  4. // Write your function below this comment:
  5.  
  6.  
  7.  
  8.  
  9.  
  10.  
  11.  
  12.  
  13. //  Write your function above this line.
  14.  
  15.  
  16. default
  17. {
  18.    state_entry()
  19.    {
  20.      
  21.      Owner = llGetOwner();
  22.        
  23.    }
  24.    
  25.    on_rez(integer start_param)
  26.    {
  27.    
  28.      llResetScript();  
  29.        
  30.     }
  31.    
  32.    touch_end(integer num)
  33.    {
  34.      
  35.       //Call your function below this comment:
  36.        
  37.    }
  38.    
  39.    collision_start(integer num)
  40.    {
  41.      
  42.     //Call your function below this comment:
  43.        
  44.        
  45.    }  
  46. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement