Configuration

Configuration

Main | Installation | Configuration

Plugin Configuration (config.yml)

General Explanation

The following will explain each of the settings that you will find within the /Simple Player List/config.yml file on your Bukkit server.

# The url that points to the location you uploaded the contents of the
# 'Web' folder to. Make sure to point it to the 'receiver.php'
Url: http://localhost:10/playerlist/receiver.php

# Your personal passcode, make this private and something unique. This
# must match the passcode entered in the config.php file.
Passcode: abc123

# How often the server will communicate with the PHP documents. This
# value is in seconds. It is recommended that you do not set it lower
# than 180.
SendDelay: 180

#See more on user ranks below
Rank:
  admin: '[Admin]'
  op: '[Op]'
  member: '[Member]'

Creating New Ranks

To create a new rank, open the 'config.yml' file in the Simple Player List folder. You will see this by default:

Url: http://localhost:10/playerlist/receiver.php
Passcode: abc123
SendDelay: 180
Rank:
  admin: '[Admin]'
  op: '[Op]'
  member: '[Member]'

To add new ranks, just add a new node under 'Rank:', for example:

Url: http://localhost:10/playerlist/receiver.php
Passcode: abc123
SendDelay: 180
Rank:
  admin: '[Admin]'
  op: '[Op]'
  member: '[Member]'
  coolkat: '[CoolKat]'

To give this new rank to on of our members, we will need to use the permission that has dynamically been created for use. The permission will always be the name of the rank. For example, for 'admin' the permission will be:

playerlist.admin: true

For the rank 'op' the permission will be:

playerlist.op: true

And so, following suit, the permission for our custom rank, 'coolkat' will be:

playerlist.coolkat: true

Web Configuration (config.php)

Follow the steps below and you'll be good to go in no time!

Before anything else, open config.php with any text editor. Find the line: $passcode = "abc123"; Replace abc123 with your chosen passcode. Save and close the file.

You can edit the rest of the settings on the fly by visiting the /editor directory of your player list.

Simple Player List Panel

Questions

Post questions here