Set Movement Data

20 September 2015

  • Release 9.14 - added

<data Commands> Type: Corrade progressive command Command[wiki]: setmovementdata Description[wiki]: The setmovementdata sets values for the AgentMovement class for the current Corrade bot. Permissions[wiki]: grooming, movement Parameters[wiki]: group, password, data Last Changes[wiki]: Release 9.14 - added </data>

The setmovementdata sets values for the AgentMovement class for the current Corrade bot.

Command Required Parameters Required Corrade Permissions Example
setmovementdata group, password, data grooming, movement
llInstantMessage(CORRADE,
    wasKeyValueEncode(
        [
            // match the rotation of the head
            // with the rotation of the primitive
            "command", "setmovementdata",
            "group", wasURLEscape(GROUP),
            "password", wasURLEscape(PASSWORD),
            "data", wasListToCSV(
                [
                    "HeadRotation",
                    llGetRot()
                ]
            ),
            "callback", wasURLEscape(URL)
        ]
    )
);