Set Object Position

31 July 2019

  • C10 - added the selection parameter.

19 May 2015

  • Release 8.12 - range is now an optional parameter and not required to locate the item.

<data Commands> Type: Corrade progressive command Command[wiki]: setobjectposition Description[wiki]: The setobjectposition command can be used to set the position of an object (in a regional frame). Permissions[wiki]: interact Parameters[wiki]: group, password, item, position Last Changes[wiki]: Release 8.12 - range is now an optional parameter and not required to locate the item. </data>

The setobjectposition command can be used to set the position of an object (in a regional frame).

Command Required Parameters Required Corrade Permissions Example
setobjectposition group, password, item, position interact
llInstantMessage(CORRADE,
    wasKeyValueEncode(
        [
            // set the position of the
            // object Chair, 5m above the
            // current object
            "command", "setobjectposition",
            "group", wasURLEscape(GROUP),
            "password", wasURLEscape(PASSWORD),
            "item", "Chair",
            "range", 5,
            "position", llGetPos() + <0, 0, 5>
        ]
    )
);
Optional Parameter Possible Value Description
range A range in meters. The spherical distance from Corrade in which to locate the item.

Notes