14 lines
306 B
Plaintext
14 lines
306 B
Plaintext
|
default
|
||
|
{
|
||
|
state_entry()
|
||
|
{
|
||
|
llListen(42, "", llGetOwner(), "");
|
||
|
}
|
||
|
listen(integer chan, string name, key id, string msg)
|
||
|
{
|
||
|
float value = (float)msg;
|
||
|
llAdjustSoundVolume(value);
|
||
|
llOwnerSay("Volume set to: " + (string)value + " of 1.0");
|
||
|
}
|
||
|
}
|