The Best Resource for Minecraft
The Best Resource for Minecraft

Stalker Creepers Mod Wiki

A behavior-altering mod that transforms Creepers into silent predators that stealthily follow players and only initiate their explosion sequence once they have been spotted.

4 sections · 669 words

Overview#

Stalker Creepers is a lightweight but high-impact AI modification that fundamentally changes how Creepers interact with the player. In the vanilla game, Creepers simply pathfind toward a player and explode once they reach a specific proximity. This mod replaces that predictable behavior with a "stalking" mechanic designed to increase tension and difficulty.

Under the influence of this mod, Creepers become much more patient. They will follow the player from a distance, staying just out of the immediate explosion range or waiting until the player is distracted. The most terrifying feature of this mod is the "Gaze Trigger": a Creeper will refrain from exploding as long as it remains behind the player or out of their field of vision. The moment the player turns around and makes eye contact with the Creeper, the fuse is ignited, often resulting in an immediate jump-scare and explosion.

A Creeper silently following a player through a forest

Mob Behavior#

The mod does not add a new mob entity but instead overwrites the AI tasks of the standard Vanilla Creeper. All existing Creeper variants (including Charged Creepers) inherit these new behaviors.

The Stalker Creeper

Attribute Detail
Health 20 (x10 Hearts)
Spawn Rate Identical to Vanilla Creeper
Movement Standard walking speed, but uses stealth-based pathfinding
Primary Drop Gunpowder (0-2)
Rare Drop Music Discs (when killed by a Skeleton)

Behavioral Changes

  • Stealth Pathfinding: Unlike standard Creepers that take the most direct route to the player, Stalker Creepers attempt to maintain a position that is not directly in the player's line of sight. They are programmed to "shadow" the player's movements.
  • The Stalking Phase: When a Creeper detects a player, it enters a stalking state. It will follow the player at a consistent distance. If the player moves, the Creeper moves; if the player stops to mine or craft, the Creeper closes the gap silently.
  • Suppressed Fuse: The standard "hissing" sound and white-flash fuse animation are suppressed while the Creeper is stalking. This allows the mob to get within point-blank range without alerting the player.
  • Detection Trigger: The explosion sequence is hard-coded to the player's Field of View (FOV). If the Creeper is within its detonation radius and the player's camera rotates to face the Creeper, the stalking phase ends and the explosion becomes inevitable.

A group of Creepers gathered behind an oblivious player

Mechanics#

The mod operates on a logic check that runs every tick for every Creeper within a certain radius of a player.

Line of Sight (LoS) Logic

The core mechanic relies on a mathematical check of the player's facing vector.

  1. Proximity Check: The Creeper first determines if it is within the "Stalking Zone" (typically within 16 blocks of the player).
  2. Orientation Check: The mod calculates the angle between the player's forward-facing vector and the vector pointing toward the Creeper.
  3. State Switch:
    • If the angle is wide (Creeper is behind or to the side of the player), the Creeper remains in Stalk Mode.
    • If the angle narrows (Player looks toward the Creeper), the Creeper switches to Attack Mode.

Multiplayer Compatibility

In multiplayer environments, the Stalker Creeper logic is calculated per player. If multiple players are near a single Creeper, the Creeper will prioritize stalking the player who is currently looking away. If one player looks at the Creeper while another is being stalked, the Creeper may initiate its explosion, potentially harming the player who never saw it coming.

A Creeper caught in the act of stalking

Configuration#

The mod includes a configuration file (typically found in the /config folder of the Minecraft directory) that allows server owners and players to fine-tune the "creepiness" of the mobs.

Option Description Default Value
detectionRadius The distance at which a Creeper will begin stalking a player. 16.0
strictStalking If true, Creepers will never explode unless seen. If false, they may explode if they stay in contact with the player for too long. true
ignoreCreative Whether Creepers should attempt to stalk players in Creative mode. false

Users can modify these values to create different gameplay experiences, such as making Creepers detect players from much further away or allowing a small chance for a "surprise" explosion even if not seen.