Skip to content
alkarinv edited this page Mar 26, 2013 · 9 revisions

Table of Contents

General Questions

How do I make leaderboards?

You will need BattleTracker. http://dev.bukkit.org/server-mods/battletracker/|BattleTracker

where it says Player1[0] ,how do I make it so they start of with 1200 rating?

You will need BattleTracker. http://dev.bukkit.org/server-mods/battletracker/|BattleTracker

How do I enable player ranking, and /arena top

You will need BattleTracker. http://dev.bukkit.org/server-mods/battletracker/|BattleTracker

My server crashed and players lost their items

There is a system in place that stores the players inventories and you can give those items back. See Admincommands#wiki-Listing_a_players_saved_inventories

What's the difference between Matches and Events

The primary difference is how they are started by default, and how you join.

  • Matches have a waiting queue, and the competition will start when enough people join
  • Events are usually started by an admin, where there is an announcement and a phase where people can join.
What makes it tricky is there are a lot of options to start both in different ways. Matches can be started with defaultOptions.matchEnableForceStart: true which will make the game start after a set time as long as the minimum number of teams have joined. Events can be started with defaultOptions.allowPlayerCreation which allows them to auto start their own events. Events can also skip the join phase by enabling a ready block defaultOptions.enablePlayerReadyBlock: true

Message Questions

How do I change who gets messages

There is a section in the config.yml that shows how to set up messages to the server and players. Configsetup#wiki-Message_Options

Config Questions

I want to change how many people can play!

You change these by changing the options nTeams (number of teams), and teamSize (how many players per team, 1 for solo). Here are some examples Number of Teams and Team Sizes

Where is the list of item enchants!!!!??

ItemEnchants

How do you change the number of players in a match

Check out the Config setup help Configsetup#wiki-Changing_the_number_of_teams

How do you make a arena were people bring their own equipment?

you take out the option clearInventory from both these stages, preReqs and onComplete Complete example with players bringing their own equipment

### Skirmish 
skirmish:
    enabled: true
    prefix: "&b[Skirmish]&e"
    preReqs:
        options: []
    onStart:
        options: [teleportIn, pvpOn]
    onComplete:
        options: [teleportOut]