Unofficial LSL Reference

[[playground:playground]]


Unofficial LSL reference

User Tools

Login

You are currently not logged in! Enter your authentication credentials below to log in. You need to have cookies enabled to log in.

Login

Forgotten your password? Get a new one: Set new password

PlayGround

Test LSL

/* test various LSL syntax highlighting elements */
default
{
    state_entry()
    {
        integer UPPER_CASE = 1+1; // it should not be highlighted as a constant
        OBJECT_CLICK_ACTION; // newest keyword at the time of writing
        llTransferLindenDollars("3d6181b0-6a4b-97ef-18d8-722652995cf1", DEBUG_CHANNEL);
    }

    experience_permissions_denied()
    {
        while (success)
        {
            llExecCharacterCmd(CHARACTER_CMD_JUMP, [1.0]);
            llSleep(0.5);
            list MyList = llGetAttachedList(id);
        }
        llSetInventoryPermMask("Object", MASK_NEXT, PERM_COPY);
        llTakeCamera();
        llSound();
        ATTACH_LPEC;
        event;
        state default;
    }
}