Skip to main content

entity.get_simulate_state

Overview

  • Check whether a character entity is currently simulated (spawned on-screen). Supports batch query via comma-separated entity_ids.

Metadata

FieldValue
DisplayGet Simulate State
Categoryentity
AccessPublic
ScopeB2Authority
Tags
Aliases

Parameters

NameTypeRequiredDefaultDescription
entity_identityIdnoSingle entity ID to check
entity_idsstringnoComma-separated entity IDs for batch query

Returns

  • Freeform result (shape is not fixed).

Single query (entity_id) returns {entity_id, exists, simulated}. Batch query (entity_ids) returns {count, results:[{entity_id, exists, simulated}]}. Shape depends on which param is provided.

Usage

await inzoi.cli.execute('entity.get_simulate_state', {
entity_id: 0, // optional
entity_ids: '', // optional
});