×
Create a new article
Write your page title here:
We currently have 3,189 articles on s23. Type your article name above or create one of the articles listed here!



    s23
    3,189Articles
    Revision as of 23:51, 14 January 2007 by imported>Took (SecondLive/Scripte moved to SecondLife/Scripte: lol)

    see also Second Life

    Man kann sehr einfach Scripte schreiben und mit dem Rest des Internets in verbindung tretten.

    Beispiele

    Mail mit Username senden + Url in Browser öffnen

    default
    {
        state_entry()
        {
            llEmail("fnord@s23.org", "Second-Life - User near HelloWorldObject", "fnord");
            llSay(0, "Welcome stranger,\nyou have reached...");
            llSetText("Welcome stranger", <255,255,255>, 1.0);
        }
    
        touch_start(integer total_number)
        {
            llEmail("fnord@s23.org", "Second-Life - HelloWorldObject touched", "User-Name: "+llKey2Name(llDetectedKey(0))+"\n");
            llLoadURL(llDetectedKey(0), "You will be redirected to www.s23.org", "http://www.s23.org/wiki/SecondLive");
        }
    }
    
    Cookies help us deliver our services. By using our services, you agree to our use of cookies.
    Cookies help us deliver our services. By using our services, you agree to our use of cookies.