Page 5 of 36

Re: Introduce Yourself...

Posted: Sun Apr 14, 2013 2:42 pm
by Constance Peregrine
Welcome to Kitely Jon-))

Re: Introduce Yourself...

Posted: Sun Apr 14, 2013 2:54 pm
by Ilan Tochner
Thank you Jon and welcome to Kitely :-)

Re: Introduce Yourself...

Posted: Sun Apr 14, 2013 7:20 pm
by Bladyblue Bommerang
Jon Bauer wrote:It so happens I play a variety of musical instruments in RL and have built virtual versions in Second Life, as well as on other grids.
Welcome to Kitely Worlds Jon. And I would like you to know that we have a pretty awesome Live Music Stage in the Kitely Plaza Telehub that is free for all residents to use.
http://www.kitely.com/virtual-world/Ila ... tely-Plaza

Image

Just in case we can get you to share your musical stylings with us Image

Re: Introduce Yourself...

Posted: Mon Apr 15, 2013 3:04 pm
by Jon Bauer
Thank you folks. I have begun uploading sound files of some of my musical instruments and will be building vw versions of them soon. Now I was wondering where to find scripts, specifically touch for sound, stop/start sound and loop scripts. If this is more appropriate for another string, i will post accordingly. Looking forward to meeting more people in world anyway.

:D

Re: Introduce Yourself...

Posted: Mon Apr 15, 2013 3:15 pm
by Constance Peregrine

Code: Select all

default
{
    touch_start(integer total_number)
    {
        //Play a Sound file Once that is in Object Inventory
        llPlaySound(llGetInventoryName(INVENTORY_SOUND,0), 1);
    }
}

Code: Select all

// Sound Prim Script - Loop
//
// Repeatly plays the sound in inventory if there is
// ONE and ONLY ONE sound.  Silent otherwise.
//
// Set this between 0.0 and 1.0
float LOUDNESS = 0.5;
//
////////////////////////////////////////////////
Noisy()
{
    if ( llGetInventoryNumber(INVENTORY_SOUND) == 1 )
    {
        string soundname = llGetInventoryName(INVENTORY_SOUND, 0);
        if ( soundname != "" )
        {
            llLoopSound( soundname, LOUDNESS );
        }
    }
    else
    {
        llStopSound();
    }
}
////////////////////////////////////////////////
default
{

state_entry()
{
    llStopSound();
    Noisy();
}

changed(integer change)
{
    if (change & CHANGED_INVENTORY)
    {
    llStopSound();
        Noisy();
    }
}

}

Re: Introduce Yourself...

Posted: Mon Apr 15, 2013 11:09 pm
by Jon Bauer
Thanks! Much appreciated.

Jon

Re: Introduce Yourself...

Posted: Tue Apr 16, 2013 6:45 pm
by Melisande Courtois
Hi, I'm Melisande, and I have just discovered Kitely very recently (like yesterday). I was an avid member of Second Life for several years as a roleplayer, but over time I lost touch with and interest in it as a game and social base. When I read about Kitely, I thought how perfect this environment could be for my students. I'm an English teacher, and along with the history teacher at my school, we are developing projects that use Kitely collaboratively and innovatively for our students.

I'm sure I'll be posting questions that can enhance our ideas. Any feedback would be greatly appreciated.

It's wonderful being a part of this community. Thanks!

Re: Introduce Yourself...

Posted: Wed Apr 17, 2013 2:10 am
by Bladyblue Bommerang
Melisande Courtois wrote:Hi, I'm Melisande, and I have just discovered Kitely very recently (like yesterday). I was an avid member of Second Life for several years as a roleplayer, but over time I lost touch with and interest in it as a game and social base.
I loved role play in Second Life but didn't like being stuck with limited space. I think Kitely is excellent for role play because you can get large, immersive environments with little cost. So If you ever get interested in rp again, drop by my 16 sim medevil playground:
http://www.kitely.com/virtual-world/Bla ... -of-Rygeon

Image

Re: Introduce Yourself...

Posted: Thu Apr 18, 2013 8:44 pm
by Jon Bauer
I have started to upload paintings I have created using programs such as Photoshop Elements, Artrage and Bamboo Sumo Paint. Similar paintings can be created using the Microsoft Paint feature on PCs. It might be something to have my own virtual art gallery or galleries on Kitely.

NB: last time I posted to this forum, there was a shape floating around in the background. That odd shape proved to be hair. What hair was doing flying around me instead of sitting on my head, I don't know.

:mrgreen:

Re: Introduce Yourself...

Posted: Thu Apr 18, 2013 8:54 pm
by Constance Peregrine
lol-))