Jump to content

AlexandreLois1

Resident
  • Posts

    78
  • Joined

  • Last visited

Posts posted by AlexandreLois1

  1. Thank you. There was a problem with the script. If the URL address is not valid, it can not teleport. And the script itself will not be able to choose a new URL address for teleportation.
    The principle of such a script - it should randomly select an address from the database URL and teleport avatar.

  2. I want to make a very unusual art project in Second Life. This is my personal development. We are talking about automatic content generation. I do not understand, where do the devil.

    I need a good programmer who writes a program. Willing to pay money.

  3. Program with random teams

    You must write a program with a random basic commands. The commands needs to change randomly. This experimental work. If your program does not work, selected randomly base command that the program worked. The program can grow. That is, you can add new commands that are randomly selected. The program should affect the graphics and sound. That is, should I get information about the program.

  4. Stir sounds

    I have an object - a steam pump. It produces sounds. My neighbor, the sounds interfere and she asked them to remove. Pumps with animation. I opened the folder and removed the pump all the sounds. However, the sounds heard. There's still a script animation. Here he is. How to remove the sound?

     

    // Script Name: Sculpt_Animator.lsl

    integer nItems=0;
    integer currentItem = 0;

    default
    {
    state_entry()
    {
    llSetTimerEvent(.01);
    nItems =llGetInventoryNumber(INVENTORY_TEXTURE);
    }

    timer()
    {
    string name = llGetInventoryName(INVENTORY_TEXTURE,currentItem);
    if (++currentItem >= nItems)
    currentItem = 0;


    llSetPrimitiveParams([PRIM_TYPE,PRIM_TYPE_SCULPT,name,PRIM_SCULPT_TYPE_PLANE]);
    }

    changed(integer type)
    {
    if (type & CHANGED_INVENTORY)
    llResetScript();
    }
    }

     

     

     

  5. I found the script chat bot. An error. How to fix it. I put this script in the avatar
    Here is a screen

    http://gyazo.com/383b603f01276d8c4acff2321ae4fe02

     

     


    // Original script by John Jamison john at imagilearning.com
    // Mods by Ferd Frederix for various speakers
    // resets when rezzed to establish listener.
    // checks for > 100 chars, which Google ignores

    string getLang (key id)
    {
    string lang = llGetAgentLanguage(id);

    if (lang != "zh-CN" && lang != "zh-TW")
    {
    lang = llGetSubString(lang,0,1);
    }
    return lang;
    }

    default
    {
    state_entry() {

    llListen(PUBLIC_CHANNEL,"","","");
    llSetText("Text 2 Voice",<1,1,1>,1.0);
    string URL = "http://translate.google.com/translate_tts?ie=utf-8&tl=en&q=" + llEscapeURL("Hello, chat to speech is ready!");
    //URL = "http://www.free-lsl-scripts.com";
    llSetPrimMediaParams(1,[PRIM_MEDIA_CONTROLS,PRIM_MEDIA_CONTROLS_STANDARD,PRIM_MEDIA_HOME_URL,URL,PRIM_MEDIA_AUTO_PLAY,TRUE]);
    }

    listen(integer chan, string name, key id, string message)
    {
    if (llStringLength(message) < 100) {
    llSetText("Text 2 Voice",<1,1,1>,1.0);
    string URL = "http://translate.google.com/translate_tts?ie=utf-8&tl=" + getLang(id) + "&q="+llEscapeURL(message);
    //llOwnerSay(URL);
    llSetPrimMediaParams(1,[PRIM_MEDIA_CONTROLS,PRIM_MEDIA_CONTROLS_STANDARD,PRIM_MEDIA_CURRENT_URL,URL,PRIM_MEDIA_AUTO_PLAY,TRUE]);
    } else {
    llSetText("Text 2 Long",<1,0,0>,1.0);
    }
    }

    on_rez(integer start_param) {
    // Restarts the script every time the object is rezzed
    llResetScript();
    }

    }

  6. Script to achieve immortality

    I want to make your avatar immortal. I believe that he has a part of my consciousness.
    I want him to
    1. traveled to Sims
    2. Approach to the people and said something.
    3. The opportunity for me to pose themselves.

    Where can I get these scripts?

×
×
  • Create New...