What is a game tick in text-based games?

A game tick is a regular, repeating interval of time that a text-based game uses to run scheduled updates to its world, like restoring health or moving computer-controlled characters.
A game tick is a regular, repeating interval of time that a text-based game server uses to update the world. On each tick, the game runs a batch of scheduled changes all at once instead of one by one.
Typical tick-driven updates include characters slowly regaining health and energy, NPCs (computer-controlled characters) moving or taking actions, defeated monsters and gathered items respawning, and the in-game weather or time of day shifting. Many games also use ticks to track things like hunger, thirst, or how long a player has been idle.
A tick does not pause the game. Play keeps going while the scheduled updates happen in the background. The tick is just the moment those updates are applied. Tick length varies a lot from game to game, ranging from a few seconds to a minute or more.
Game Tick: a brief history
The concept traces back to the earliest MUDs (multi-user dungeons, the first shared text-based game worlds) of the 1980s. A server running a persistent world needs some regular schedule to update everything, so the idea of a repeating tick appeared early as a practical way to keep the world moving.
By the early 1990s, the term was common in the DikuMUD and LPMUD families of game code, where ticks (sometimes called pulses or rounds in specific systems) governed things like healing, monster behavior, and respawns. Exact timing and naming have always differed between codebases, but the underlying idea of a scheduled world update has stayed roughly the same and carried over into later online games.
How it's used today
Game ticks are mostly an under-the-hood concept, but players run into them constantly. If you are waiting to heal up between fights, watching for a monster to reappear, or timing a regeneration-based ability, you are paying attention to ticks even if the game never uses that word.
Builders and coders care about ticks more directly, since they decide how often events fire and how fast the world changes. Players mostly learn a game’s tick rhythm by feel, for example noticing that health comes back every several seconds.
Types of games where the term is commonly used include:
MUD, RPI, MUSH, and many MMORPGs that share the same persistent-world design.
Game Tick examples
- A player finishes a tough fight at low health, sits down to rest, and recovers a chunk of hit points on each tick until they are back to full.
- A new player asks in chat why a slain monster vanished, and a veteran explains that it will respawn at its spawn point after a few ticks.
- A builder sets a fountain room so that, on every tick, there is a small chance a fish appears for players to catch.
- A character’s hunger meter rises one step each tick, so the player keeps food on hand for long sessions.
Myths and misconceptions
- A tick equals one real second. Tick length is set by each game and is rarely exactly one second. It can be several seconds, a minute, or longer, so timing your actions to a tick means learning that specific game’s rhythm.
- Every game uses ticks the same way. Different codebases handle ticks differently, and a single game may run several tick rates at once for different systems. What happens on a tick in one game can be completely different in another.
- The game freezes during a tick. The world does not stop. Play continues normally while the scheduled updates are applied, so a tick is a moment of change, not a pause.
Game Tick FAQs
How long is one game tick?
There is no single answer. Tick length is set by each game and can run anywhere from a few seconds to a minute or more. Some games even use several different tick rates for different systems, like a fast tick for combat and a slow one for weather.
Does a game tick pause the game?
No. The game keeps running and you can keep typing commands. A tick is simply the scheduled moment when the server applies its batch of background updates, such as healing or monster movement.
What kinds of things happen on a tick?
Common examples are characters regaining health and energy, NPCs moving or acting, monsters and items respawning, weather and time of day changing, and stats like hunger or thirst updating.
Do all text-based games use ticks?
Not all of them, and not in the same way. Ticks are most associated with MUDs and similar persistent worlds. Turn-based or purely human-run roleplay games may have no automatic ticks at all, since their world only changes when people act.
Can I see or control the tick as a player?
Usually you cannot see it directly, and you cannot change it. Most games hide the timing, though some show hints like a regular healing message. Coders and builders are the ones who actually set how ticks behave.
Leave a Comment