Ton's Guide to Create Events: Difference between revisions
Jump to navigation
Jump to search
TonTheKidRS (talk | contribs) No edit summary |
TonTheKidRS (talk | contribs) No edit summary |
||
Line 6: | Line 6: | ||
# Build a spawn or entrance room for people when the first join the event. | # Build a spawn or entrance room for people when the first join the event. | ||
# '''Team Event''' | |||
## In your spawn room, select areas for people to join the event. <br /> These should be 3x3 areas obviously separated. | |||
# The first command block should be: | # The first command block should be: | ||
#; eventset x='''coord''' y='''coord''' z='''coord''' world='''name'''. | #; eventset x='''coord''' y='''coord''' z='''coord''' world='''name'''. | ||
#: This sets the place where people end up when they do /event | #: This sets the place where people end up when they do /event | ||
#: This command block should be Impulse, Unconditional, and | #: This command block should be Impulse, Unconditional, and Triggered by Redstone | ||
# The next command block: | # The next command block: | ||
#; ea true '''Event Name''' | #; ea true '''Event Name''' | ||
#: This opens the event and announces it in chat | #: This opens the event and announces it in chat | ||
#: This command block should be Impulse, Unconditional, and | #: This command block should be Impulse, Unconditional, and Triggered by Redstone | ||
# The next command block: | |||
#; gamemode adventure @a[tag=event] | |||
#: This makes sure all of the players in the event stay in adventure mode (or whatever gamemode is desired for the event) | |||
#: This command block should be Repeat, Unconditional, and Triggered by Redstone | |||
'''WIP''' | '''WIP''' |
Revision as of 17:54, 11 May 2020
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.
- Build a spawn or entrance room for people when the first join the event.
- Team Event
- In your spawn room, select areas for people to join the event.
These should be 3x3 areas obviously separated.
- In your spawn room, select areas for people to join the event.
- The first command block should be:
- 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
- The next command block:
- ea true Event Name
- This opens the event and announces it in chat
- This command block should be Impulse, Unconditional, and Triggered by Redstone
- The next command block:
- gamemode adventure @a[tag=event]
- This makes sure all of the players in the event stay in adventure mode (or whatever gamemode is desired for the event)
- This command block should be Repeat, Unconditional, and Triggered by Redstone
WIP