Jump to content

Hi need help


Ricoress
 Share

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

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

Recommended Posts

Bonjours je aurais besoin aide

.default
{
    state_entry()
    {
        llPreloadSound("");
    }
    on_rez(integer start_param)
    {
        llResetScript();
    }
    touch_start(integer total_number)
    {
        integer i;
        for (i = 0;i < total_number;i += 1)
        {
        // Play a sound
        llPlaySound("b9", 1.0);
        llSay(5, "1");
        
        string origName = llGetObjectName();
        string owner;
        owner = llKey2Name( llGetOwner() );
        owner = llList2String( llParseString2List( owner, [" "], [] ), 0 );
        string avName;
        avName = llDetectedName(i);
        avName = llList2String( llParseString2List( avName, [" "], [] ), 0 );
        llSetObjectName( avName );
        llSay(0, "/me open " + owner + "'light.");
        llSleep(2);
        llSay(5, "2");
        
        llSetObjectName( origName );
        }
    }
}

 

 

Que ces posible de le metre en plusieur toucher que le avoirs une seul fois .

Link to comment
Share on other sites

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