ApiData().SetExuderSecurityLevel
Sets the numeric integer security level for the given Exuder.
Description
This function sets the security level for a particular identified Exuder within a specific Behavior, modifying the current SILVIA Brain to do so. The security range is 0 – n, where 0 is “open” to anyone, and any value above 0 must be met with a matching or greater user security level for the Exuder to be invoked. Note that a higher Behavior security level can override a lower Exuder security level.
bool success = _core.ApiData().SetExudersecurityLevel(147, 1, 2);
Parameters
int |
id |
The integer numeric value or variable representing the unique ID of the Behavior containing the Exuder. |
int |
exuderId |
The integer numeric value or variable representing the indexed ID of the Exuder, separate from the Behavior ID. |
int |
securityLevel |
The numeric integer value representing the new security level to apply to the given Exuder within the given Behavior. |
Returns
The boolean success or failure of the operation.