Cuberite Forum
LimitWorld - Printable Version

+- Cuberite Forum (https://forum.cuberite.org)
+-- Forum: Plugins (https://forum.cuberite.org/forum-1.html)
+--- Forum: Plugin Releases (https://forum.cuberite.org/forum-2.html)
+--- Thread: LimitWorld (/thread-1277.html)

Pages: 1 2 3 4


RE: LimitWorld - xoft - 12-10-2013

It would be impossible to do it completely seamlessly. There are two main approaches here:
1, Teleport the player from one edge to the other. This suffers because the client and the server have some time lag in between them, so the server sending the teleport packet would make the client seem to jerk. Not to mention chunk reloads that take time.
2, Repeat the chunks forever. This has the problem of entities and other players being generally at one set of coords but this approach requires them to be at an infinite number of coords at the same time.

I think #1 is more doable, with a bit of #2 taken in - the chunks just beyond the edge that the player would normally see would need to be repeated, with all the defects coming with it.


RE: LimitWorld - SamJBarney - 12-11-2013

Color me uninformed, but couldn't you send the chunks to the client to preload and then do the teleport, or does the client not work that way?


RE: LimitWorld - xoft - 12-11-2013

There's no way for a plugin to force the server to send a specific chunk (not to mention at wrong chunk coords) to a client.


RE: LimitWorld - SamJBarney - 12-11-2013

ok. Just curious.


RE: LimitWorld - LogicParrot - 04-07-2014

I am getting millions of these warnings:
"
[05:31:13] SetUseDefaultStructures: Structures are no longer accounted for, use Finishers instead
[05:31:13] SetUseDefaultStructures: Structures are no longer accounted for, use Finishers instead
[05:31:13] SetUseDefaultStructures: Structures are no longer accounted for, use Finishers instead
[05:31:13] SetUseDefaultStructures: Structures are no longer accounted for, use Finishers instead
"


RE: LimitWorld - xoft - 04-07-2014

That means a plugin is touching something in the world generation, and it's trying to set whether structures are generated or not; this has been deprecated recently, so the plugin needs updating.


RE: LimitWorld - LogicParrot - 04-07-2014

The plugin works perfectly though. It is just spammy.


RE: LimitWorld - xoft - 04-07-2014

I posted a patch that removes the warnings.


RE: LimitWorld - LogicParrot - 04-07-2014

Great Smile

Where was it posted?


RE: LimitWorld - xoft - 04-08-2014

It has been already integrated into the plugin, on GitHub. Download an updated version from the link at the first post (the version there will always be the latest)