StepTrack

Quick rating

Community listing page, reviews here may not be monitored by the author.

StepTrack

By FrenchDevs , Gamera752d Artist/Learning java

No reviews yet

A simple mod that tracks the distance you travel

Mod Loaders
Minecraft

About

Description

Introduction

StepTrack simple mod that tracks the distance you travel

The mod adds two counters (one for speed, the other for distance) to the top-left of the screen and displays messages in the chat and above the hotbar when the player reaches milestones such as:
- 10 m
- 100 m
- 1 km
- 5 km
- 10 km
- 50 km
- 100 km
( 1 block = 1 meter )

Version 1.0.2 adds the ability to hide the statistics using the 'I' key on your keyboard :

description_b684941b-9b9b-4c4d-9f70-08259ba1160b.gif

Version 1.0.2 also adds the ability to change the statistics unit using the 'U' key on your keyboard :

description_c58dfe47-61dc-471e-a614-f449abbeb138.gif

Version 1.0.3 adds the command :
/resetstep
, which resets a player's accumulated distance, you can target all players using the command :
/resetstep @a
, or a random player with :
/resetstep @r

Version 1.0.4 adds a feature that displays "Village" above the hotbar when the player is in a village

 
 

Calculation

Distance calculation

This mod calculates only the horizontal distance along the X and Z axes, using the following formula :

X and Z represent the player's positions on the X and Z axes Xt and Zt represent the player's positions on the X and Z axes during the previous tick

Speed calculation

As with distance, this mod calculates only the horizontal speed along the X and Z axes, using the following formula :

description_e92d597c-02cc-4d30-b1bc-7f15069f4dbf.png

X and Z represent the player's positions on the X and Z axes Xt and Zt represent the player's positions on the X and Z axes during the previous tick

This project is under development.

Introduction

A simple mod that tracks the distance you travel

Result in game with Solar shader

The mod adds two counters (one for speed, the other for distance) to the top-left of the screen and displays messages in the chat and above the hotbar when the player reaches milestones such as:

  • 10 m
  • 100 m
  • 1 km
  • 5 km
  • 10 km
  • 50 km
  • 100 km ( 1 block = 1 meter )

Version 1.0.2 adds the ability to hide the statistics using the 'I' key on your keyboard :

Result in game with Solas Shader

Version 1.0.2 also adds the ability to change the statistics unit using the 'U' key on your keyboard

Version 1.0.3 adds the command :

  • /resetstep (PlayerName)

Version 1.0.4 Adds a feature that displays "Village" above the hotbar when the player is in a village

Calculation

Spoiler

Distance calculation

This mod calculates only the horizontal distance along the X and Z axes, using the following formula :

Distance formula

X and Z represent the player's positions on the X and Z axes Xt and Zt represent the player's positions on the X and Z axes during the previous tick

Speed calculation

As with distance, this mod calculates only the horizontal speed along the X and Z axes, using the formula :

c

X and Z represent the player's positions on the X and Z axes Xt and Zt represent the player's positions on the X and Z axes during the previous tick

 

This project is under development