Jump to content

brandy Elton

Resident
  • Posts

    2
  • Joined

  • Last visited

Reputation

0 Neutral

Recent Profile Visitors

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

  1. default { state_entry() { llSetText( Text, TextColor, TextAlpha ); hidden = FALSE; } changed( integer change ) { if( change & CHANGED_LINK ) { integer temp = llAvatarOnSitTarget() != NULL_KEY; if( temp != hidden ) { if(temp) { llSetText( "", ZERO_VECTOR, 0 ); } else { llSetText( Text, TextColor, TextAlpha ); } hidden = temp; } llSleep(0.5); } } } How do I get that working with this // This script was auto-generated by Ann Enigma's script autogenerator // available at http://www.3greeneggs.com/autoscript/ default { state_entry() { llSensorRepeat("", NULL_KEY, AGENT, 300000, PI, 5); } sensor(integer total_number) { llSetText("Sit Here", <1.0,1.0,1.0>, 1.0); } }  That is what I am trying to figure out fully.
  2. I have made a pose ball and over it in green I have it say "Sit Here" but for the life of me I can NOT get it to disappear when someone is sitting on the ball. Can somebody help me figure out the rest of the scripting that is needed?? PLEASE make it simple because I am just learning all of this.
×
×
  • Create New...