Saturday, October 20, 2018

Sensor speak script in OSSL and uploading sound in Audacity

Below is a sensor speak script. It senses an avatar nearby and plays a sound. I am also including a play sound when touched script below this one. The video shows how to record a sound in Audacity and upload it into firestorm.


// Sensor speak script

default
{
    state_entry()
    {
        llSensorRemove();
        llSensorRepeat("",NULL_KEY,AGENT,5,PI/2,3.0);
    }

    sensor(integer num)
    {
      llSensorRemove(); 
      llPlaySound("welcomemvm",1.0);
      llSetTimerEvent(30); 
}
}
// end of script here

//Script for play sound on touch
default
{
        touch_start(integer total_number)
    {
        llSetObjectName(llDetectedName(0));
        llPlaySound ("phone_ringing",10.0);
    }
}
// end of script here

Tuesday, October 9, 2018

Newbie videos from my collection that may be useful for Opensimulation and Kitely

A simple trick I learned for selecting and moving objects. This is using OnLook viewer in dreamworldz

Here is a terraform example. Most viewers are similar in their command functions.


Saturday, October 6, 2018

OSSL scripting finding editing debugging intro for educators

This is a longer tutorial introducing OSSL scripting for educators........now don't PANIC! I am not going to attempt to teach you a scripting language. This little tutorial simply shows you how to find scripts already written, edit them, and debug them. It is only an example, however if you ever run into an issue, especially with items you find on Multiverse Masters, then please reach out.