Advertisement
Shinobiace

Enable_Fishing

Sep 23rd, 2020
416
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  
  2. integer spawn_check;
  3.  default
  4. {
  5.     state_entry()
  6.     {
  7.        
  8.          llListen(-11223,"Fish Pond","","");
  9.          
  10.          
  11.     }
  12.      
  13.     listen(integer channel, string what, key who, string msg)
  14.     {
  15.         /*
  16.         while(msg == "CheckRod"&&spawn_check==TRUE)
  17.         {
  18.             llSay(-11223,"testloopp");
  19.             llSay(-11223,"Equip");  
  20.             if(spawn_check==FALSE)
  21.             {
  22.                 llSay(-11223,"UnEquip");  
  23.                 llSay(-11223,"breakloop");
  24.                 break;
  25.             }
  26.         }
  27.         */
  28.        
  29.                      
  30.         if(msg == "CheckRod")
  31.         {    
  32.                
  33.             llSay(-11223,"Equip");  
  34.         }
  35.        
  36.        
  37.  
  38.     }
  39.    
  40.    
  41. /*
  42.     attach(key id)
  43.     {
  44.         //llSay(-11223, (string) llGetKey());
  45.         llOwnerSay(llGetKey());
  46.         id = llGetKey();
  47.         if(id == NULL_KEY)
  48.         {
  49.             spawn_check = FALSE;
  50.         }
  51.         else if(id != NULL_KEY)
  52.         {
  53.             spawn_check = TRUE;
  54.         }
  55.                
  56.     }
  57.    
  58.    
  59.     on_rez(integer start_param)
  60.     {
  61.         spawn_check = TRUE;
  62.        
  63.         frod = llDetectedKey(0);
  64.         if(msg == "CheckRod")
  65.         {      
  66.             llSay(-11223,"Equip");
  67.         }
  68.        
  69.     }
  70.     */
  71.    
  72. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement