Shinobiace

Enable_Fishing

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