From 20215c3d30fb55bf232bff1b3d6652d82e00b798 Mon Sep 17 00:00:00 2001 From: Jeff Ames Date: Sat, 26 Jan 2008 10:34:49 +0000 Subject: Rewrote svn properties handling script in python. Added more file types. --- bin/assets/ScriptsAssetSet/llAdjustSoundVolume.lsl | 26 +++++++++++----------- 1 file changed, 13 insertions(+), 13 deletions(-) (limited to 'bin/assets/ScriptsAssetSet/llAdjustSoundVolume.lsl') diff --git a/bin/assets/ScriptsAssetSet/llAdjustSoundVolume.lsl b/bin/assets/ScriptsAssetSet/llAdjustSoundVolume.lsl index 25e90c0..4c2d397 100644 --- a/bin/assets/ScriptsAssetSet/llAdjustSoundVolume.lsl +++ b/bin/assets/ScriptsAssetSet/llAdjustSoundVolume.lsl @@ -1,13 +1,13 @@ -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"); - } -} +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"); + } +} -- cgit v1.1