Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Entities

Greg edited this page Nov 24, 2025 · 25 revisions

Entity is a broad category for everything that exists in the game world, with a second sub-category Character for Player and NPC entities that can move. The main Entity types are:

Screenshot 2024-02-20 171650

Note

Item's are considered a part of interfaces not entities, for more info see Inventories.

World

Although only an entity due to technicality the World also has a number of operations the same as other entities.

World spawn and despawn are called on server startup and shutdown:

worldSpawn {
}

worldDespawn {
}

And world timers work the same as other entities:

worldTimerStart("timer_name") {
}
worldTimerTick("timer_name") {
}
worldTimerStop("timer_name") {
}

Clone this wiki locally

Morty Proxy This is a proxified and sanitized view of the page, visit original site.