Jump to content
  • 0

What's wrong with this script?


Void Singer
 Share

You are about to reply to a thread that has been inactive for 5184 days.

Please take a moment to consider if this thread is worth bumping.

Question

I already know, this is just a test post to check various methods of posting code.
But feel free to speak up if you know the answer

integer  Range     = 40;
float    Arc       = 2 * PI;
float    Frequency = 10.0;
list     Previous;
integer  Search;
string   Target;

default{
     state_entry(){
          llSensorRepeat( "", "", AGENT, Range, Arc, Frequency );
     }
     
     sensor( integer Sensed ){
          do{
               Target = llDetectedKey( --Sensed );
               Search = llListFindList( Previous, Target );
               if (Search = -1){
                    Previous = Target + llList2List( Previous, 0, 78 ); llDialog( Target, "Message ", [], -42 );
               }
          }while (Sensed)
     }
}
Link to comment
Share on other sites

Recommended Posts

  • 0

It will take a script to manage signatures best.  Here is something that can hide or change the signature colors for now.


  .jive-thread-reply-message,
  .jive-thread-post

  {
      /* Make the signatures lighter */
      color: #7f7f7f;

      /* Uncomment the next line to hide signatures */
      /* visibility: hidden; */
  }

  .jive-rendered-content
  {
      color: black;
      visibility:visible;
  }

Let's start another thread it we want to talk about this more?

Link to comment
Share on other sites

You are about to reply to a thread that has been inactive for 5184 days.

Please take a moment to consider if this thread is worth bumping.

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
 Share

×
×
  • Create New...