Skip to content
alkarinv edited this page Oct 28, 2012 · 8 revisions

Table of Contents

Commands and Tutorial

Adding a worldGuard region to your arena

  • First, use your //wand to select an area, then
  • /arena alter <arena name> addregion

Adding different options to your arena

  • Open up your config.yml
  • Add in the worldguard options to any stages you would like them in
Example: Say you want to make it so that items on the floor are cleared when a match is complete. While they are fighting you want to make them not be able to run away. Let's edit the skirmish to make this happen.

This is what the config looks like before

### Skirmish 
skirmish:
    enabled: true
    type: versus
    onStart:
        options: [teleportIn, pvpOn]
    onComplete:
        options: [teleportOut]
    winner:
        options: [health=20, hunger=20]
 
After changing, adding in wgNoLeave and wgClearRegion
### Skirmish 
skirmish:
    enabled: true
    type: versus
    onStart:
        options: [teleportIn, pvpOn, wgNoLeave]
    onComplete:
        options: [teleportOut, wgClearRegion]
    winner:
        options: [health=20, hunger=20]
 

Valid Options

More options will be added as requested

  • wgClearRegion : clears the region of any items
  • wgNoLeave : players in the arena can't leave the region
  • wgNoEnter : players cant enter the arena region (except for fighting players)
  • wgResetRegion : resets the region to the way it was when you added it via /arena alter addRegion.

Return to Wiki

Home

Clone this wiki locally