Set game speed

Started by Bullfighter2009 on

Topic category: Help with Minecraft modding (Java Edition)

Active 1 year ago
Joined Oct 2020
Points:
777

User statistics:

  • Modifications: 2
  • Forum topics: 26
  • Wiki pages: 0
  • MCreator plugins: 0
  • Comments: 52
Set game speed

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

Active 4 years ago
Joined Jan 2020
Points:
852

User statistics:

  • Modifications: 1
  • Forum topics: 20
  • Wiki pages: 0
  • MCreator plugins: 0
  • Comments: 203
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)).

Active 1 year ago
Joined Oct 2020
Points:
777

User statistics:

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

No, I want make slowmo effect.

Active 8 months ago
Joined Oct 2017
Points:
1052

User statistics:

  • Modifications: 5
  • Forum topics: 31
  • Wiki pages: 0
  • MCreator plugins: 0
  • Comments: 309
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

Active 1 year ago
Joined Oct 2020
Points:
777

User statistics:

  • Modifications: 2
  • Forum topics: 26
  • Wiki pages: 0
  • MCreator plugins: 0
  • Comments: 52
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?

Active 3 years ago
Joined Nov 2019
Points:
878

User statistics:

  • Modifications: 0
  • Forum topics: 8
  • Wiki pages: 0
  • MCreator plugins: 0
  • Comments: 384
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

Active 3 years ago
Joined Nov 2019
Points:
878

User statistics:

  • Modifications: 0
  • Forum topics: 8
  • Wiki pages: 0
  • MCreator plugins: 0
  • Comments: 384
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

Active 3 years ago
Joined Nov 2019
Points:
878

User statistics:

  • Modifications: 0
  • Forum topics: 8
  • Wiki pages: 0
  • MCreator plugins: 0
  • Comments: 384
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.

Active 1 year ago
Joined Oct 2020
Points:
777

User statistics:

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

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

Active 1 year ago
Joined Oct 2020
Points:
777

User statistics:

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

Can you give me a code?

Active 4 years ago
Joined Dec 2019
Points:
965

User statistics:

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

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

Active 1 year ago
Joined Oct 2020
Points:
777

User statistics:

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

I don't want this. I want change tickrate

Active 3 years ago
Joined Nov 2019
Points:
878

User statistics:

  • Modifications: 0
  • Forum topics: 8
  • Wiki pages: 0
  • MCreator plugins: 0
  • Comments: 384
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.

Active 3 months ago
Joined Sep 2019
Points:
1193

User statistics:

  • Modifications: 4
  • Forum topics: 58
  • Wiki pages: 0
  • MCreator plugins: 0
  • Comments: 425
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