Name

Entity Condition Type

Checks if the name of an entity or player matches a specific string. (This condition works client-side, so it can be used in Conditioned Origins.)

Type ID: appli:name

Fields

Field Type Default Description
name String The name to check for.
match_case Boolean false Whether the name field should need to match the casing of the entity's name.

Examples

"entity_condition": {
    "type": "appli:name",
    "name": "Pig",
    "match_case": false
}

This example will check if the entity's name is "Pig" (or any other casing).

"entity_condition": {
    "type": "appli:name",
    "name": "BizeeB"
}

This example will check if the entity's name is exactly "BizeeB".