Jump to content

Roni Southmoor

Resident
  • Posts

    5
  • Joined

  • Last visited

Reputation

0 Neutral

Recent Profile Visitors

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

  1. Totally agree 38 is not enough now where mesh clothes and bento heads, along with the huds you need to wear now for the mesh bodies and heads.
  2. OMG thank you so much that worked. Huggies to all that helped me.
  3. tried that and it dont seem to be working for me.
  4. That worked great thank you very much, but is it possible to change it so only the name of the box shows instead of the inventory inside it?
  5. Hi all I hope someone can help me with a script to do the following. I have boxes out in my home where I store my dens for my breedables. My ex wrote the script which went into the box to show what the content was inside but he set it to no modify so I can not view the script. I have found the script online by Xylor Baysklef, which gives me hover text on the box. But is there a way I can click the box to turn the hover text on and then the hover text goes off after a few seconds. I know it does do it because it does it on my breedable dens. ////////////////////////////// // Floating Name Script By Xylor Baysklef // // This script periodically updates // the text above the object to // display the name of the object /////////////////////////////// integer SIDE_TO_CHECK_COLOR = 0; UpdateText() { vector RGB = llGetColor(SIDE_TO_CHECK_COLOR); // Rotate the Hue 180 degrees, and // invert the Luminance. RGB.x = 1.0 - RGB.x; RGB.y = 1.0 - RGB.y; RGB.z = 1.0 - RGB.z; llSetText(llGetObjectName(), RGB, 1.0); } default { state_entry() { UpdateText(); // Update the text every 5 seconds. llSetTimerEvent(5.0); } changed(integer change) { if (change == CHANGED_COLOR) { UpdateText(); } } timer() { UpdateText(); } }// END // I hope someone can help me here.
×
×
  • Create New...