Advertisement
Shinobiace

Fish

Sep 29th, 2020
368
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. integer visible = TRUE;
  2. vector defaultsize;
  3.  
  4. //Random number variable
  5. float   FloatValue;
  6. integer IntValue;
  7. string  StringValue;
  8.  
  9. integer lchan;
  10.  
  11. //key id;
  12. show()
  13. {
  14.     llSetAlpha(1,ALL_SIDES);
  15.     visible = TRUE;
  16.     return;
  17. }
  18. hide()
  19. {
  20.     llSetAlpha(0,ALL_SIDES);
  21.     visible = FALSE;
  22.     return;
  23. }
  24.  
  25. Ssize()
  26. {  
  27.    
  28.    
  29.    llSetScale(<0.4/9,2.0/9, 5.0/9>);
  30.    
  31. }
  32. Msize()
  33. {  
  34.    
  35.    llSetScale(<0.4/6, 2.0/6, 5.0/6>);
  36.    
  37. }
  38. Bsize()
  39. {  
  40.    
  41.    llSetScale(<0.4, 2.0, 5.0>);
  42.    
  43. }
  44. default
  45. {
  46.     state_entry()
  47.     {
  48.        
  49.        llListen(-11223,"Fish Pond",NULL_KEY,"");
  50.        llSetAlpha(1,ALL_SIDES);  
  51.        defaultsize = llGetScale();        
  52.        lchan = ((integer)("0x"+llGetSubString((string)llGetOwner(),-8,-1)) - 723) | 0x8000000;
  53.        llListen(lchan,"Fish Pond",NULL_KEY,"");            
  54.     }
  55.    
  56.     listen(integer channel, string what, key who, string msg)
  57.     {
  58.       //  if(llGetOwnerKey(who) == llGetOwner()) // Note that the message comes from the pond and not the owner of the rod. You can't use llGetOwnerKey(who) because the owner of the pond and the owner of the rod are not necessarily the same owner.
  59.      
  60.      list tmp = llParseString2List(msg,["_"],[]);   // 10. Repeat parsing the essage
  61.    
  62.     string cmd = llList2String(tmp,0);  
  63.    
  64.     key rod_owner = (key)llList2String(tmp,1);  // 11. We are only working with the rod owner key in this event so do not need to store it ina global variable.
  65.        
  66.      
  67.          
  68.     if(rod_owner == llGetOwner()) //12. We've passed the rod owner jey to the spawner and can now check if they key corresponds to the owner of the sapwner.
  69.      {
  70.            
  71.      if(cmd == "on")  // 13. Remember to check the parsed message.
  72.             {
  73.                 hide();
  74.                 llSetScale(defaultsize);
  75.             }
  76.             else if(cmd == "off")
  77.             {
  78.                
  79.                 //llSleep(8.0);                  
  80.                 show();
  81.                 //random number generator
  82.                 FloatValue  = llFrand(3);
  83.                 IntValue    = llRound(FloatValue);
  84.                 StringValue = (string)IntValue;
  85.          
  86.                 llSay(-11223, StringValue);
  87.                
  88.                 //llMessageLinked(LINK_SET, 1, "String ", id);
  89.                 if(IntValue == 1)
  90.                 {
  91.                     Ssize();
  92.                     //llMessageLinked(LINK_SET, 1, "Small Fish", NULL_KEY);
  93.                 }
  94.                 else if(IntValue == 2)
  95.                 {
  96.                     Msize();
  97.                     //llMessageLinked(LINK_SET, 2,  "Medium Fish",NULL_KEY);
  98.                 }
  99.                 else if(IntValue == 3)
  100.                 {
  101.                     Bsize();
  102.                     //llMessageLinked(LINK_SET, 3,  "Big Fish", NULL_KEY);
  103.                 }
  104.  
  105.                                            
  106.             }
  107.            
  108.            
  109.         }
  110.     }
  111.    
  112. //    touch_start(integer total_number)
  113. //    {        
  114. //        if(visible == TRUE)
  115. //        {
  116. //            hide();
  117. //        }
  118. //        else if(visible == FALSE)
  119. //        {
  120. //            show();
  121. //        }        
  122. //    }
  123.  
  124. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement