Jump to content

Why is this script not working?


l3al3e
 Share

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

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

Recommended Posts

I've been typing /1hide It's not responding.

 

default
{
    state_entry()
    {
        key owner = llGetOwner();
        //llWhisper(0,"Cloaking ready");
        llListen(1,"",owner,"");
    }
   
    listen( integer channel, string name, key id, string message )
    {
        if( message == "/hide" )
        {
            llSetStatus(STATUS_PHANTOM, TRUE);
            //llWhisper(0,"hide");
            llSetAlpha(0,ALL_SIDES);
        }
        if( message == "/show" )
        {
            llSetStatus(STATUS_PHANTOM, FALSE);
            //llWhisper(0,"show");
            llSetAlpha(1,ALL_SIDES);
        }
    }
}

Link to comment
Share on other sites

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