#how to change gamespeed?
4 messages · Page 1 of 1 (latest)
if you are on newer versions, you can change the tickrate of the world
Minecraft have It itself With the /tick
the default timer in minecraft is 50.0F
the timer is stored in a field called msPerTick (located inside the timer class, which is located inside of an interface DeltaTracker (net.minecraft.client.DeltaTracker)
to edit this value, you can simply use java reflections to get and edit that field
if you want the game to run twice as slow, set the field to 50.0F / 0.5f
and when you want to make the game run at normal speed, just set it back to 50 :)