Posted December 3, 201212 yr I got a machine and it functioned well.But when I go far away, its TileEntiity stop working.How can I do to make it working then?hehe....
December 3, 201212 yr I got a machine and it functioned well.But when I go far away, its TileEntiity stop working.How can I do to make it working then?hehe.... Chunk loaders is how it is traditionally done. This is normal behavior of minecraft, and the reason chunk loaders were created. If that is too much for what you need to do, the only other option is to map your tile entities(coordinate based key) and tick them all on a server tick(burn time value), and have the tile entities check that map for it's burn time. This would only keep the burn time ticking, but would have no impact on anything else however. Also the map would need to be saved or burn time would be lost on every reload. Chunk loading would actually be an easier to implement way of doing this, but the way described above would also work without sacrificing as much performance as chunk loading does if you only want it to keep 'cooking'. Edit: An easier way would be to make the burntime tick counter realtime aware. You could have it's burntime be based on realtime instead of ticks. You could set a start time, and it's current burn percent is based on the current time.
December 4, 201212 yr Author I got a machine and it functioned well.But when I go far away, its TileEntiity stop working.How can I do to make it working then?hehe.... Chunk loaders is how it is traditionally done. This is normal behavior of minecraft, and the reason chunk loaders were created. If that is too much for what you need to do, the only other option is to map your tile entities(coordinate based key) and tick them all on a server tick(burn time value), and have the tile entities check that map for it's burn time. This would only keep the burn time ticking, but would have no impact on anything else however. Also the map would need to be saved or burn time would be lost on every reload. Chunk loading would actually be an easier to implement way of doing this, but the way described above would also work without sacrificing as much performance as chunk loading does if you only want it to keep 'cooking'. Edit: An easier way would be to make the burntime tick counter realtime aware. You could have it's burntime be based on realtime instead of ticks. You could set a start time, and it's current burn percent is based on the current time. But how to use the ChunkLoaders?I think it will be more easy to do with the method tick but it should be bugful (and partly because i don't know how to use tick method)
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.