Jump to content

MadamG Zagato

Resident
  • Posts

    379
  • Joined

  • Last visited

Everything posted by MadamG Zagato

  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.
  15. It sounds like you need to request a review of your limits: https://secondlife.com/my/lindex/describe-limits.php How to request review of your limits You may request a review of your account to increase your limits. Please visit the support system and submit a ticket. Premium account holders should select the Billing and L$ -> LindeX™ Tier Review ticket options. Basic account holders should select "Special Questions - Basic account or Guest Login" -> LindeX™ Tier Review. We'll review your request and get back to you within 5 business days.
  16. I would join the Fashion Consolidated Cafe' group and ask in there. Just paste the link to the picture with your question in group chat.
  17. Was the URL that the link it took you to a secondlife.com URL?
  18. Etes-vous un message d'erreur? Parfois, les réseaux publics de restreindre les connexions qui nécessitent de grandes quantités de bande passante.
  19. You aren't the only one having issues updating your billing information. See http://community.secondlife.com/t5/Linden-Dollars-L/I-still-cannot-update-my-billing-information/qaq-p/1278105 But there's nothing we can do about it until it's fixed. Since it's Sunday in the U.S., I don't think the billing department is open at Linden Lab although there could be someone working on the problem.
  20. Check your trash folder. You may have accidentally deleted them. Are you logging in under an alternate accuont and possible expecting to see landmarks from your main account?
  21. Are you getting a particular error message each time you try? It could be the billing system is experiencing problems which happens on occassion. Unfortunatley, if that's the case the best thing to do is to try again in few hours. But if for whatever reason you cannot wait to get your billing info updated, I'd suggest getting in touch with Linden Lab.
  22. If you mean you want to delete your Second Life account, here is the link: https://secondlife.com/my/account/cancel.php
×
×
  • Create New...