-->

FoxSan's 3D Tools and LSL Script Repository

Tons of LSL scripts, examples and 3D tools, free for all. There are currently 207 scripts and articles in this database.

Count In llGetObjectDesc Example

default
{
    touch_start(integer total_number)
    {
        integer count;
        // Retrieves the count
        count = (integer)llGetObjectDesc();
        // Increment it
        count++;
        // Save it
        llSetObjectDesc((string)count);
    }
}

Comments are closed.