FastCreepersOptions

@Serializable
data class FastCreepersOptions(var enabled: Boolean = true, var speedMultiplier: Double = 2.0, var fuseDuration: Int = 15, var jump: Boolean = true, var jumpAfterTicks: Int = 5, var jumpVerticalVelocity: Double = 0.5, var jumpHorizontalVelocity: Double = 0.42) : ModuleOptions

Constructors

Link copied to clipboard
constructor(enabled: Boolean = true, speedMultiplier: Double = 2.0, fuseDuration: Int = 15, jump: Boolean = true, jumpAfterTicks: Int = 5, jumpVerticalVelocity: Double = 0.5, jumpHorizontalVelocity: Double = 0.42)

Properties

Link copied to clipboard
open override var enabled: Boolean

Whether the module is enabled or not. This is used to determine if the module should be loaded and its features activated.

Link copied to clipboard

Duration in ticks before the creeper explodes. Minecraft default is 30 ticks (1.5 seconds)

Link copied to clipboard

Whether the creeper should jump towards its target. If true, the creeper will jump after jumpAfterTicks ticks.

Link copied to clipboard

Number of ticks after which the creeper will jump towards its target. If jump is false, this value is ignored.

Link copied to clipboard

Horizontal velocity of the creeper when it jumps. This is a multiplier for the jump distance.

Link copied to clipboard

Vertical velocity of the creeper when it jumps. This is a multiplier for the jump height.

Link copied to clipboard

Multiplier for the creeper's movement speed.