Ton's Guide to Create Events

From Simplicitypvp
Jump to navigation Jump to search

In this I will be discussing how to create an event from a technical point of view. Note: this guide uses command blocks that are configured to run all the commands necessary for the event to make the admins lives easier.

Once you have built the physical event, I suggest building some sort of control room for the Admin to go be in during the event.


  1. Build a spawn or entrance room for people when they first join the event.

    Team Event:
    1. In your spawn room, select areas for people to join the event.
      These should be 3x3 areas obviously separated, one for each team.
      Under the center of each 3x3 area, you want to place 1 command block.

      1. The command block for each team's 3x3 area should be:
        team join Teamname @a[dx=-1,dy=1,dz=-1]
        This command block adds players on top of it to the team that is specified
        This command block should be Repeat, Unconditional, and Always Active

    Note: Make sure the team you are using exists with /team list.

    Solo Event:
    1. Under the spawn block of your event, place a command block.
    2. This command block should be:
      team join Teamname @a[dx=-1,dy=1,dz=-1]
      1. This command block adds players on top of it to the team that is specified
        This command block should be Repeat, Unconditional, and Always Active

    Note: Make sure the team you are using exists with /team list.

  2. Now you need to build a control room/area for the admin to run the event. There should be a large area for the command blocks to stay, preferably out of sight. Make sure the following command blocks are connected to one button

    1. Command Block 1:
      eventset x=coord y=coord z=coord world=name.
      This sets the place where people end up when they do /event
      This command block should be Impulse, Unconditional, and Triggered by Redstone
      This command block should be powered by its own button.

      1. If you want to have a respawning team event, the following Command Blocks must be included:
        1. Command Block 1:
          eventset x=coord y=coord z=coord world=name team=Team 1
          This sets the respawn point for Team 1
          If you want players to keep their inventory when they die, add an additional argument: keepinventory=true.
          This command block should be Impulse, Unconditional, and Triggered by Redstone
          This command block should be included in the Start Event Sequence.

        2. Command Block 2:
          eventset x=coord y=coord z=coord world=name team=Team 2
          This sets the respawn point for Team 2
          If you want players to keep their inventory when they die, add an additional argument: keepinventory=true.
          This command block should be Impulse, Unconditional, and Triggered by Redstone
          This command block should be included in the Start Event Sequence.

    2. Command Block 2:
      1. ea true Event Name
        This opens the event and announces it in chat
        This command block should be Impulse, Unconditional, and Triggered by Redstone
        This command block should be powered by its own button.

  3. The next button controls a string of command blocks:
    1. The first set of command blocks should be:
      Team Event
      1. Command Block 1:
        tp @a[team=Team 1] x y z
        This command teleports the 1st team to their area.
        This command block should be Impulse, Unconditional, and Triggered by Redstone

        Command Block 2
        tp @a[team=Team 2] x y z
        This command teleports the 1st team to their area.
        This command block should be Impulse, Unconditional, and Triggered by Redstone

      Solo Event
      1. Solo Events with one spawn:
        tp @a[team=teamname] x y z
        This command teleports all players in the event to one location.
        This command block should be Impulse, Unconditional, and Triggered by Redstone

      2. Solo Events with spread players:
        spreadplayers Center X Center Z Min Distance Between Target Max Distance Between Targets false @a[team=!]
        This command spreads the players randomly around the map based on certain predefined settings.
        This command block should be Impulse, Unconditional, and Triggered by Redstone

    2. The second set of command blocks should be:
      give @a[team=!] item
      This command gives all players in the event the specified item items.
      This command block should be Impulse, Unconditional, and Triggered by Redstone
      Note: You will need 1 command block for every different item you want to give to the players.

    3. The last command block in this string closes the event so no one can join mid-event:
      ea false
      This command block should be Impulse, Unconditional, and Triggered by Redstone

  4. The next command block string is again all powered by one button:
    1. Command Block 1:
      endevent
      This command ends the event, clears the player's inventory, and returns them to the normal world.
      This command block should be Impulse, Unconditional, and Triggered by Redstone

    2. Command Block 2:
      team leave @a
      This command removes all players from any team.
      This command block should be Impulse, Unconditional, and Triggered by Redstone

  5. Finally, make sure to convert all coordinates that are used in command blocks to static coordinates. Static coordinates are the ones that use tildes.
    1. You can do this using the /relativecoords command, or ask MoWobbler for a calculator.


If you have any other questions feel free to contact me on the Forum, Discord, or In-Game
TonTheKidRS