OsSetOwnerSpeed

From OpenSimulator

(Difference between revisions)
Jump to: navigation, search
m (Change note to additional_info)
(Script change)
Line 5: Line 5:
 
|function_syntax= osSetOwnerSpeed(float SpeedModifier)
 
|function_syntax= osSetOwnerSpeed(float SpeedModifier)
 
|ossl_example=<source lang="lsl">
 
|ossl_example=<source lang="lsl">
 +
//
 +
// osSetSpeed Script Example
 +
//
 +
 +
integer switch;
 +
 
default
 
default
 
{
 
{
 
     state_entry()
 
     state_entry()
 
     {
 
     {
         osSetOwnerSpeed(2.5);
+
         llSay(PUBLIC_CHANNEL, "Touch to see osSetSpeed usage.");
 +
    }
 +
 +
    touch_start(integer number)
 +
    {
 +
        if (llDetectedKey(0) == llGetOwnerKey(llGetKey()))
 +
        {
 +
            if (switch = !switch)
 +
            {
 +
                osSetOwnerSpeed(2.0);
 +
                llOwnerSay("Your speed in now multiplied by 2.0");
 +
            }
 +
   
 +
            else
 +
            {
 +
                osSetOwnerSpeed(1.0);
 +
                llOwnerSay("Your speed in now multiplied by 1.0, the default value");
 +
            }
 +
        }
 +
 
 +
        else
 +
        {
 +
            llSay(PUBLIC_CHANNEL, "Sorry, you are not the owner of this object.");
 +
        }
 
     }
 
     }
 
}
 
}

Revision as of 15:57, 24 November 2020

osSetOwnerSpeed(float SpeedModifier)
Implemented september 28, 2018 by Bill Blight in GIT# 6d9de1 & 881268 and MANTIS# 8383

This allows for users to speed themselves up. It multiplies the running, walking, rotating and flying of the avatar.

The default value for SpeedModifier is 1.0 and the maximum value is 4.0.

To be precise, it affects physical velocity. If you specify too large or too small number for SpeedModifier, the target will be unmovable, showing the following message in the region console:

[PHYSICS]: Got a NaN velocity from Scene in a Character
Threat Level Moderate
Permissions ${OSSL|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
Extra Delay 0 seconds
Example(s)
//
// osSetSpeed Script Example
//
 
integer switch;
 
default
{
    state_entry()
    {
        llSay(PUBLIC_CHANNEL, "Touch to see osSetSpeed usage.");
    }
 
    touch_start(integer number) 
    {
        if (llDetectedKey(0) == llGetOwnerKey(llGetKey()))
        {
            if (switch = !switch)
            {
                osSetOwnerSpeed(2.0);
                llOwnerSay("Your speed in now multiplied by 2.0");
            }
 
            else
            {
                osSetOwnerSpeed(1.0);
                llOwnerSay("Your speed in now multiplied by 1.0, the default value");
            }
        }
 
        else
        {
            llSay(PUBLIC_CHANNEL, "Sorry, you are not the owner of this object.");
        }
    }
}
Personal tools
General
About This Wiki