CuukyOfficial / VaroPlugin

Ein sehr funktionsreiches und performantes ODV & Varo Plugin mit API u.v.m.
https://docs.varoplugin.de
GNU Affero General Public License v3.0
16 stars 21 forks source link

Autosetup: infinite Searching for terrain #87

Closed H4K0N42 closed 1 year ago

H4K0N42 commented 1 year ago

Plugin is on newest version and the server is on 1.20.2, this is the autosetup config:

border: 20002
enabled: true
lobby:
  enabled: true
  snap:
    type: MAX_HEIGHT
    ground:
      offset: 0
    maxHeight:
      offset: 50
    absolute:
      ypos: 64
  schematic:
    enabled: false
    file: plugins/Varo/schematics/lobby.schematic
  generated:
    height: 10
    width: 25
portal:
  enabled: true
  height: 5
  width: 4
spawns:
  amount: 40
  block:
    material: STONE_BRICK_SLAB
  radius: 9500
  sideblock:
    material: GRASS_BLOCK
autostart:
  time:
    hour: -1
    minute: -1
spawnGeneratorYTolerance: 42

The border is 10.000 blocks from 0 in each direction, the spawn radius should be 9.500. From what I see the cords at ~50.000, ~50.000 get checked now.

Some console output: image image image

Almighty-Satan commented 1 year ago

The border is supposed to be set automatically with the center being the middle of the spawns. The border-"size" defined in the config is the radius, so in your case it would be 20002 blocks from the middle of the spawns in each direction. Auto-setup searches for suitable terrain before placing spawns to avoid for example placing them in the middle of an ocean. Due to your extremely large spawn radius (9500 blocks) this might take a very long time. I would recommend setting the spawns manually via /varo spawns generate and not running auto-setup. Otherwise it will likely not finish within a reasonable amount of time. In the future please upload your logs to something like https://mclo.gs/ instead of taking screenshots.

H4K0N42 commented 1 year ago

Thank you for your advice.