Set game speed

Started by Bullfighter2009 on

Topic category: Help with modding (Java Edition)

Last seen on 05:41, 28. Mar 2024
Joined Oct 2020
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Set game speed

How to set game speed? If it unreal how to do it with custom code spippet?

Last seen on 22:49, 17. Mar 2021
Joined Jan 2020
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
What do you mean by "game…
Tue, 11/03/2020 - 18:40

What do you mean by "game speed?" If you just mean the tick speed, that's easily done with a gamerule (/gamerule randomTickSpeed X (default is 3, goes up to ~4000)).

Last seen on 05:41, 28. Mar 2024
Joined Oct 2020
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
No, I want make slowmo…
Sun, 11/08/2020 - 15:23

No, I want make slowmo effect.

Last seen on 14:25, 28. Jul 2023
Joined Oct 2017
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
I don't think that is…
Sun, 11/08/2020 - 16:56

I don't think that is possible. Not with mcreator and maybe not even with coding

Last seen on 05:41, 28. Mar 2024
Joined Oct 2020
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
I know. There isn't any…
Sun, 11/08/2020 - 19:09

I know. There isn't any procedure in MCreator what can do it, but can you find code what can do it?

Last seen on 05:29, 31. Jan 2022
Joined Nov 2019
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
there might be a way to…
Mon, 11/09/2020 - 16:05

there might be a way to simulate a time slowing effect on living entities, but requires some coding. basically you hook net.minecraftforge.event.entity.living.LivingEvent.LivingUpdateEvent. cancel the event at certain intervals to slow down its tick updates, that will simulate a slowmo effect.

 cancel the event at certain…
Mon, 11/09/2020 - 17:21

 cancel the event at certain intervals to slow down its tick updates, that will simulate a slowmo effect.

It will be more of a lag effect :D

Last seen on 05:29, 31. Jan 2022
Joined Nov 2019
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
you think so? i would've…
Mon, 11/09/2020 - 18:07

you think so? i would've thought it would speed up the game due to it skipping no many ticks

Last seen on 05:29, 31. Jan 2022
Joined Nov 2019
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
i just tested the theory in…
Mon, 11/09/2020 - 18:32

i just tested the theory in a flat world, view distance at 12 chunks, and approx 100+ living entities in sight. i skipped every 2 out of 3 ticks on all living entities. the frame rate was a steady 250 fps. although it did look like the world was in slowmo, all entities movement was segmented (movement wasn't smooth). that may give the impression of world lag idk. i wonder if there's a way to remedy that.

Last seen on 05:41, 28. Mar 2024
Joined Oct 2020
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
I want change tickrate in…
Tue, 12/08/2020 - 15:14

I want change tickrate in minecraft 1.15.2. Not /Gamerule randomTickSpeed.

Last seen on 05:41, 28. Mar 2024
Joined Oct 2020
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Can you give me a code?
Tue, 12/08/2020 - 15:15

Can you give me a code?

Last seen on 23:41, 3. Jun 2021
Joined Dec 2019
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
Just do effect give @e…
Tue, 12/08/2020 - 16:24

Just do effect give @e slowness 2883828282 255 and all entities slow down. 

Last seen on 05:41, 28. Mar 2024
Joined Oct 2020
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
I don't want this. I want…
Sun, 01/03/2021 - 12:43

I don't want this. I want change tickrate

Last seen on 05:29, 31. Jan 2022
Joined Nov 2019
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
there's a mod for changing…
Sat, 01/09/2021 - 07:20

there's a mod for changing tick rate called TickrateChanger.

you won't be able to do it yourself. it's quite complicated to change the tickrate on the server side.

Last seen on 19:41, 25. Mar 2024
Joined Sep 2019
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
i know how to make a freeze…
Sat, 01/09/2021 - 13:28

i know how to make a freeze time sorta thing but it only works with mobs and it is buggy