Introduce Yourself...

Talk about anything, whether on topic or off topic
Post Reply
User avatar
Constance Peregrine
Posts: 2348
Joined: Sun Dec 23, 2012 11:35 am
Has thanked: 2778 times
Been thanked: 1479 times

Re: Introduce Yourself...

Post by Constance Peregrine »

Welcome to Kitely Jon-))
Laissez faire et laissez passer, le monde va de lui même!
My little sounds store https://www.kitely.com/market?store=2040306

Ephemeral wanderer...
User avatar
Ilan Tochner
Posts: 6503
Joined: Sun Dec 23, 2012 8:44 am
Has thanked: 4942 times
Been thanked: 4454 times
Contact:

Re: Introduce Yourself...

Post by Ilan Tochner »

Thank you Jon and welcome to Kitely :-)
User avatar
Bladyblue Bommerang
Posts: 199
Joined: Sun Jan 13, 2013 3:42 am
Has thanked: 200 times
Been thanked: 111 times
Contact:

Re: Introduce Yourself...

Post 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
These users thanked the author Bladyblue Bommerang for the post:
Adagio Greenwood
Image
Jon Bauer
Posts: 9
Joined: Sun Apr 14, 2013 2:20 pm
Has thanked: 0
Been thanked: 7 times

Re: Introduce Yourself...

Post 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
Attachments
JonBauer_inKitely.jpg
These users thanked the author Jon Bauer for the post:
Bladyblue Bommerang
User avatar
Constance Peregrine
Posts: 2348
Joined: Sun Dec 23, 2012 11:35 am
Has thanked: 2778 times
Been thanked: 1479 times

Re: Introduce Yourself...

Post 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();
    }
}

}
These users thanked the author Constance Peregrine for the post:
Duke OfUrl
Laissez faire et laissez passer, le monde va de lui même!
My little sounds store https://www.kitely.com/market?store=2040306

Ephemeral wanderer...
Jon Bauer
Posts: 9
Joined: Sun Apr 14, 2013 2:20 pm
Has thanked: 0
Been thanked: 7 times

Re: Introduce Yourself...

Post by Jon Bauer »

Thanks! Much appreciated.

Jon
Attachments
JonBauer_inKitely.jpg
These users thanked the author Jon Bauer for the post:
Constance Peregrine
Melisande Courtois
Posts: 2
Joined: Tue Apr 16, 2013 11:00 am
Has thanked: 0
Been thanked: 4 times

Re: Introduce Yourself...

Post 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!
These users thanked the author Melisande Courtois for the post (total 4):
Constance PeregrineIlan TochnerAdagio GreenwoodBladyblue Bommerang
User avatar
Bladyblue Bommerang
Posts: 199
Joined: Sun Jan 13, 2013 3:42 am
Has thanked: 200 times
Been thanked: 111 times
Contact:

Re: Introduce Yourself...

Post 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
These users thanked the author Bladyblue Bommerang for the post:
Constance Peregrine
Image
Jon Bauer
Posts: 9
Joined: Sun Apr 14, 2013 2:20 pm
Has thanked: 0
Been thanked: 7 times

Re: Introduce Yourself...

Post 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:
Attachments
JonBauerKitelygrid.jpg
These users thanked the author Jon Bauer for the post:
Constance Peregrine
User avatar
Constance Peregrine
Posts: 2348
Joined: Sun Dec 23, 2012 11:35 am
Has thanked: 2778 times
Been thanked: 1479 times

Re: Introduce Yourself...

Post by Constance Peregrine »

lol-))
Laissez faire et laissez passer, le monde va de lui même!
My little sounds store https://www.kitely.com/market?store=2040306

Ephemeral wanderer...
Post Reply