Get the Text of a Script Contained inside a Primitive

3 September 2020

  • C11 - added.
getprimitivescripttext (Commands)
TypeCorrade progressive command
Commandgetprimitivescripttext
DescriptionThe getprimitivescripttext command is used to retrieve the text of a script inside a primitive's (task) inventory.
Permissionsinventory, interact
Parametersgroup, password, item, target
Last ChangesRelease 9.164 - added.

The getprimitivescripttext command is used to retrieve the text of a script inside a primitive's (task) inventory.

Command Required Parameters Required Corrade Permissions Example
getprimitivescripttext group, password, item, target inventory, interact
llInstantMessage(CORRADE,
    wasKeyValueEncode(
        [
            // Retrieve the text of a script from an in-world primitive.
            "command", "getprimitivescripttext",
            "group", wasURLEscape(GROUP),
            "password", wasURLEscape(PASSWORD),
            // The name or UUID of the script.
            "target", "New Script",
            "range", "5",
            // The in-world primitive name or UUID.
            "item", "myscriptedobject",
            "callback", wasURLEscape(URL)
        ]
    )
);
Optional Parameter Possible Value Description
range an integer value The range in meters to look for the primitive to retrieve a script's text from.
selection attached, rezzed or all (default: all) Either attached, rezzed or all for selecting only primitives or objects attached to avatars, primitives or objects rezzed in-world or all primitives or objects respectively.

Notes