Jump to content
  • 0

is there a script that alerts you when someone else clicks the object in your land?


HisaDrug
 Share

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

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

Question

4 answers to this question

Recommended Posts

  • 0

You could write one easily enough.  In fact, you already have one that could do what you want with one simple change.  It's the default "Hello, Avatar!" script.  Rez a prim and take a look.  While you have the Edit window open with your new prim, go to the Contents tab and click the "New Script" button.  Then open the new script.  This is what it looks like ...

default{    state_entry()    {        llSay(0, "Hello, Avatar!");    }     touch_start(integer total_number)    {        llSay(0, "Touched.");    }}

 Change that last line to

llInstantMessage( llGetOwner(),"Touched." );

and the script will send you the message "Touched." every time someone touches it.  I think you may find it terribly annoying to get all of those IMs (and your IMs will get capped after the first 25 if you are not in world), but it does what you asked for.

  • Like 2
Link to comment
Share on other sites

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