Don't click here unless you want to be banned.

LSL Wiki : HelloAvatar

HomePage :: PageIndex :: RecentChanges :: RecentlyCommented :: UserSettings :: You are crawl338.us.archive.org

Hello Avatar


This is the default script you see when you create a new script.

default
{
    state_entry()
    {
        llSay(0, "Hello, Avatar!");
    }

    touch_start(integer total_number)
    {
        llSay(0, "Touched.");
    }
}

Hello Avatar is a variant of Hello World, a common first program or script in a language. They are often used as a compiler test, to make sure that the compiler itself actually works.

There are 5 comments on this page. [Display comments/form]