Jump to content

Sally Ellisson

Resident
  • Posts

    9
  • Joined

  • Last visited

Reputation

0 Neutral

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. any channel other than local, like channel 33. Can you help? Script is below! ____________________ // Global variables list visitor_list; float range = 10.0; // in meters float rate = 1.0; // in seconds // Functions integer isNameOnList( string name ) { integer len = llGetListLength( visitor_list ); integer i; for( i = 0; i < len; i++ ) { if( llList2String(visitor_list, i) == name ) { return TRUE; } } return FALSE; } // States default { state_entry() { llSay(0, "Visitor List Maker started..."); llSay(0, "The owner can say 'help' for instructions."); llSensorRepeat( "", "", AGENT, range, TWO_PI, rate ); llListen(0, "", llGetOwner(), ""); } sensor( integer number_detected ) { integer i; for( i = 0; i < number_detected; i++ ) { if( llDetectedKey( i ) != llGetOwner() ) { string detected_name = llDetectedName( i ); if( isNameOnList( detected_name ) == FALSE ) { visitor_list += detected_name; } } } } listen( integer channel, string name, key id, string message ) { if( id != llGetOwner() ) { return; } if( message == "help" ) { llSay( 0, "This object records the names of everyone who" ); llSay( 0, "comes within "+ (string)range + " meters." ); llSay( 0, "Commands the owner can say:" ); llSay( 0, "'help' - Shows these instructions." ); llSay( 0, "'say list' - Says the names of all visitors on the list."); llSay( 0, "'reset list' - Removes all the names from the list." ); } else if( message == "say list" ) { llSay( 0, "Visitor List:" ); integer len = llGetListLength( visitor_list ); integer i; for( i = 0; i < len; i++ ) { llSay( 0, llList2String(visitor_list, i) ); } llSay( 0, "Total = " + (string)len ); } else if( message == "reset list" ) { visitor_list = llDeleteSubList(visitor_list, 0, llGetListLength(visitor_list)); llSay( 0, "Done resetting."); } } }
  2. I need a script that will delete multiple prims at the same time by sending a command like /99delete Thank You Sally
  3. What is the normal cost per prim on a rental? I've found $5/per prim to $7/per prim $ 19/per prim? very confuse!
  4. Ok I have a 20 x 20 prim that I do not want others to stand or sit on. I tried the no sit script works good for preventing sitting, but I also need a script that will prevent standing. Would be cool if it would automatic teleport the person a few meters off the prim, or push them off. Hope you can help! Sally
  5. made a maze in sl. would like to have the entrance phantom going in, but solid so they can't come out the way they came in. Is this possible? -sally
  6. :smileyvery-happy: I come across these "Clear Visible Cache prims" Do they work and what do they do exacty? ThankYou! Sally "
  7. I'm looking for a script that will not allow you to sit on a prim of any size, any idea? sally
  8. I need to prevent others from going to the ground from my skybox. Are there any tricks other than security orbs? ThankYou! Sally
×
×
  • Create New...