Trying to see if I can add a turn based movement system.

The only way I can think of is by setting a worldborder centered on a player for their turn.

But theres a few problems: No vertical limiting, other players could use it if they are close enough, it looks kind of ugly and the border is square (yes I know minecraft is square)

:-)

  • Interstellar_1@lemmy.blahaj.zone
    link
    fedilink
    English
    arrow-up
    3
    ·
    1 month ago

    Before I give you an actual answer, (which will probably be tomorrow since I’m sick rn) how big is the area where you are trying to capture players, and are you saying this area isn’t square?

    • deeDog@lemmings.worldOP
      link
      fedilink
      English
      arrow-up
      2
      ·
      1 month ago

      Kind of like an RPG where you only get given lets say, 7 meters.

      I’m not really trying to limit the area, but instead the distance. So it would make a theoretical circle of movement.

      I only mention squares because worldborders are square, not bad, but probs could be better.

      Also, since it’s turn based, it would be nice to have only one person move at a time.

      Hope u get well soon :-]

      • Interstellar_1@lemmy.blahaj.zone
        link
        fedilink
        English
        arrow-up
        2
        ·
        edit-2
        1 month ago

        I figured out a couple of commands for you to keep the player in a certain radius. It does this by teleporting a marker entity to your position every tick, but only within the radius of the sphere, so once the player leaves the sphere a second command can teleport the player back to the marker. These commands can be run in repeating command blocks or a function. Here’s the commands necessary:

        Load Commands (run once)

        /tag username add constrained
        Adds a tag to the player to keep them in this spot. If you have multiple players you’ll need to set up a system with multiple tags or teams or something similar. you can also change the target selector to whatever you want.


        /execute at username run summon marker ~ ~ ~ {Tags:["pos"]}
        Summons a marker at the player that will be used to track their location. You can change the target selector as well as the tag for this one, just make sure to keep the tags consistent.

        Tick Commands (run every tick)

        execute positioned x y z as @e[type=marker,tag=pos,distance=..7] if entity @a[tag=constrained,distance=..7] run tp @a[tag=test,distance=..7,limit=1]
        Runs as the closest marker with the tag pos inside a 7 block spherical radius centered around a chosen location. If a player with the tag constrained is found within this radius, the marker is teleported to the player. Make sure to change the x, y, and z coords to a location of your choice, you can change the radius to something other then 7, and you can change the tag names.


        execute positioned x y z as @a[tag=constrained,distance=7..,limit=1] run tp @e[type=minecraft:marker,tag=pos,limit=1]
        Runs as the closest player with the tag constrained outside a 7 block spherical radius. If found, it teleports the player to a marker entity with the tag pos inside of the 7 block radius. Make sure to change the x, y, and z coords to a location of your choice, you can change the radius to something other then 7, and you can change the tag names.


        See if this works for you. If it doesn’t, let me know, or just try a different method.