Jump to content

MadamG Zagato

Resident
  • Posts

    379
  • Joined

  • Last visited

Posts posted by MadamG Zagato

  1. 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!

     

     

  2. 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;
        }
    }

  3. 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.

  4. 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.

  5. 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.

    • Like 1
×
×
  • Create New...