Jump to content

MadamG Zagato

Resident
  • Posts

    379
  • Joined

  • Last visited

Reputation

17 Good

Recent Profile Visitors

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

  1. Voted. In addition you won't be notified if the listing is deleted (and relisted).
  2. Sounds like a simple touch script. Start on the Second Life Wiki: http://wiki.secondlife.com/wiki/Touch_start This is the code you'll need to get started: //////////////////////////////////////////// default { touch_start(integer num_detected) { integer i = 0; for(; i<num_detected; ++i) llWhisper(0, "Touched by " + llKey2Name(llDetectedKey(i))); } } //////////////////////////////////////////// You can replace llWhisper with llSay, llOwnerSay, or llOwnerSay. Hope this helps, have fun!
  3. I am able to add your name to an item as a gift without a problem. I get the "Include a Gift Message (optional)" box after it finds your name. So it's not happening across the board.
  4. Are you playing your own animations fom your inventory "locally"? That's what it sounds like. Does "anyone" at all see you dancing?
  5. Is there anyone else in the group and can you see their IM's?
  6. There are chat apps, but nothing that will allow you to "see" the world within. I did find this It's the first I've seen of it and may be worth looking into if you are interested. But still not an official mobile app.
  7. No, there is no official Second Life app for mobile devices.
  8. Wow. If this hasn't been reported in the JIRA I hope you report it.
  9. You'll need to pay them inworld. If you are near them you can right click on their avatar and pay them or go to the private chat window and pay them from there.
  10. There's several on the Marketplace: I searched "bow necklace" and it came up with many, here's a couple: https://marketplace.secondlife.com/p/Angelas-Bijoux-Gold-necklace-bow-tie-form-and-ruby-two-earrings/970900 https://marketplace.secondlife.com/p/YMX-crystal-bow-necklace-silveraurora/514453 Also try searching "anchor necklace". There's a bunch of those too! Here are a couple: https://marketplace.secondlife.com/p/Slow-KitchenAnchor-necklace/2004599 https://marketplace.secondlife.com/p/Carolines-XOXO-Anchor-Necklace-in-Silver/37139 I hope this helps!
  11. Link: https://support.secondlife.com/start-chat/
  12. Also if you have other things going on in your script it would be better to use a timer instead of llSleep since nothing gets done while it's sleeping. I hope this helps!
  13. The problem is that afetr you collide with the object, you collide with it again to test it and it goes phantom again. That's what you wrote the script to do. Try this: default { state_entry() { llSetStatus (STATUS_PHANTOM, FALSE); llWhisper(0,"default..."); } collision_start(integer total_number) { llWhisper(0,"collision..."); state trap; } } state trap { state_entry() { llSetStatus (STATUS_PHANTOM, TRUE); llWhisper(0,"sleeping..."); llSleep (5); llWhisper(0,"awake...try to collide with me now."); llSetStatus (STATUS_PHANTOM, FALSE); llSleep(10); //In 10 seconds it will go phantom if you try again state default; } }
  14. Items don't automatically upload and appear on the Marketplace. Once your items are in your box, go to your merchant homepage. In the top rightcorner of your page is a dropdwown box "My Marketplace". Click the little arow and select "Marketplace Home" from the menu. On the left you'll see Manage Inventory and Magic Box Status. You can check your Magic Box status to see if it's operational or not. If it's not make sure the scripts ser enabled on your land. If so, click on Manage Inventory to add items.
×
×
  • Create New...