Push All Scripts

This commit is contained in:
Fred Beckhusen
2015-08-07 10:38:47 -05:00
parent 2ad9795428
commit ce47ec2f3e
8079 changed files with 2442776 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
<Project name="Frog_timer" guid="D7279334-6C00-1014-B904-200204C60A89">
<Object name="Object" guid="D727943E-6C00-1014-B904-200204C60A89">
<Script name="Frog_timer_1.lsl" guid="D727ACB4-6C00-1014-B904-200204C60A89">
</Script>
</Object>
</Project>

View File

@@ -0,0 +1,45 @@
// :CATEGORY:Sound
// :NAME:Frog_timer
// :AUTHOR:Anonymous
// :CREATED:2010-01-10 05:20:56.000
// :EDITED:2013-09-18 15:38:53
// :ID:341
// :NUM:459
// :REV:1.0
// :WORLD:Second Life
// :DESCRIPTION:
// Frog timer.lsl
// :CODE:
// Frog player
// Written by Ferd Frederix
// Scans every 10 seconds for visitors within 5 meters.
// then it croaks
play ()
{
string sound = "frog";
float value = llFrand(4.0) ;
integer file = (integer) value + 1;
llPlaySound( sound + (string) file, 1.0);
}
default
{
state_entry()
{
llSetTimerEvent( 10.0);
}
timer()
{
play();
}
touch(integer num_detected)
{
play();
}
}
// END //