Jump to content

Interactive text above head


Amorenna Bae
 Share

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

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

Recommended Posts

Hi all, I'm looking for a script (?) for floating text above head. "___ # of people want to ___" that sort of thing, that another user can click and it adds to the number. Any suggestions would be great, as I can't find one for the life of me. Thank you :)

Link to comment
Share on other sites

Not sure it's exactly what you're after but maybe something like this with a little editing?

// Touch Me Plea script [KMLT-Touch Me Plea]
// - Author.: KarenMichelle Lane
// - Company: KM Love Things
// - Freely Donated into the Public Domain
//
vector  color = <1.0, 1.0, 1.0>;
string  default_text = "Hello, I'm just here waiting to be touched!";
string  text;
integer count=0;

default
{
    state_entry()
    {
        text = default_text;
        llSetText(text, color, 1.5);
    }

    touch_end(integer number)
    {
        count = count + 1;
        text = "Oh My! I've been touched " + (string)count + " times. Do it again please.";
        llSetText(text, color, 1.5);
    }
}

Link to comment
Share on other sites

You are about to reply to a thread that has been inactive for 1730 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...