Minecraft Commander mod 2026 download
logo
minecraft mod Commander

Commander

Game Version: CB 1.4.6-R0.3
Total Downloads: 15,402
Updated: Jan 11, 2013
Created: Sep 8, 2012
Download CommanderDownload Earlier Versions

Earlier Versions

Name Size Uploaded Game Version Downloads
Commander 1.6.3 release 22.66 KB Jan 11, 2013 CB 1.4.6-R0.3 9,918 download Commander Commander 1.6.3 releaseDownload
Commandr 1.6.1 release 18.80 KB Jan 6, 2013 CB 1.4.6-R0.3 666 download Commander Commandr 1.6.1 releaseDownload
Commander 1.6 release 18.07 KB Dec 28, 2012 1.4.6 777 download Commander Commander 1.6 releaseDownload
Commander 1.5 release 18.01 KB Sep 20, 2012 CB 1.3.2-R0.1 1,283 download Commander Commander 1.5 releaseDownload
Commander 1.4 release 18.58 KB Sep 14, 2012 CB 1.3.2-R0.1 852 download Commander Commander 1.4 releaseDownload
Commander 1.3.9 release 17.84 KB Sep 12, 2012 CB 1.3.2-R0.1 388 download Commander Commander 1.3.9 releaseDownload
Commander 1.3.5 release 17.53 KB Sep 12, 2012 CB 1.3.2-R0.1 287 download Commander Commander 1.3.5 releaseDownload
Commander 1.3 release 15.24 KB Sep 11, 2012 CB 1.3.2-R0.1 324 download Commander Commander 1.3 releaseDownload
Commander 1.2 release 12.24 KB Sep 9, 2012 CB 1.3.2-R0.1 268 download Commander Commander 1.2 releaseDownload
Commander 1.1 release 12.09 KB Sep 9, 2012 CB 1.3.2-R0.1 179 download Commander Commander 1.1 releaseDownload
Commander 1.0 release 11.12 KB Sep 8, 2012 CB 1.3.2-R0.1 460 download Commander Commander 1.0 releaseDownload

Description

Share this:

Commander

Source | Latest Development Build (1.6.4) | Latest Release (1.6.3)

Programming

Dragonphase – designed for mau5ville.com

Additional Credit

If you have experience with Java and creating Bukkit plugins, I will greatly appreciate the help and am interested with working with developers; I will be rewriting Commander to make it easier to use and more efficient to produce code for.

I am currently looking for someone to help me produce a video demonstration of Commander, demonstrating basic and advanced features. Please message me on bukkit if you are interested – a high standard of demonstrative and/or reviewer abilities is preferred. The reason for this is that most people miss the advanced features or don't understand how to use them.

Overview

Commander is a powerful device interface tool used to assign commands, messages and statements to buttons, levers and pressure plates.

Features
Add and remove multiple commands to buttons, levers and pressure plates
Manually add and edit existing device data in the devices.yml file
Check player permissions, items and groups using if-else statements
Perform commands as player, op or console
Multi-Perms support – Vault required!
Add commands to regions – WorldGuard and WorldEdit required!

How to use

Firstly, make sure you have VAULT installed, as well as any of the permissions plugins it can handle (such as PermissionsEx or bPermissions). This allows permissions detection for all permissions-based systems specified on the Vault page.

Supported Devices

As of right now, only four devices are supported and listed below. Wooden Button will be easy to implement when 1.4 is released. I am currently in progress of developing a tripwire interface system for Commander:

Wooden Pressure Plate, Stone Pressure Plate, Stone Button, Wooden Button, Lever

Command Types

Command Types specify how the command will be run:

Player, Op, Console

You may also use p, o or c
Note: it is impossible for non-ops to op themselves using the op command type, as after all commands have been initiated, it de-ops the player. It is possible on a console command type however.

Commands

An explanation of how these commands work is shown when you type the command in-game:

Command Description
/commander Display the commander help. You can also use /com
/commander add Add commands to the device you are looking at. See Supported Devices
/commander rem[ove] Remove commands from the device you are looking at
/commander clear Clear the interface of the device you are looking at
/commander check Check all associated commands of the device you are looking at
/commander list Show a list of all devices in all worlds
/commander add-entry Add commands to the region you are standing in
/commander add-entry(regionName) Add commands to the region named regionName
/commander rem-entry Remove commands from the region you are standing in
/commander rem-entry(regionName) Remove commands from the region named regionName

References

References add a very powerful aspect to the uses of commander. References allow you to display specific traits of the player or the server to the player. References can also be used in messages and statements:

Reference Description
@player OR @name Player name
@group Player group name
@world Player world name
@time Player world time
@level Player level
@exp OR @xp Player experience
@health Player health level
@food Player food level
@mode OR @gm Player game mode
@server Server IP
@region Name of the region you are standing in
Conditional references

With commander, you can force the command to continue on to the next command or stop running any further commands. This is useful when adding conditional statements on devices:

Reference Description
@continue Continue to the next command
@return Do not run further commands

An useful example of this is:

@in admin>@@You are an admin>@return
/give @player 57 1

This will check if the player is an admin – if they are in the admin group, it sends a message to them saying "You are an admin" and then gives them one diamond block. if they are not in the admin group, @return sop any other commands from running.

A little note about conditional references

Commands in conditional references are run the same as any other commands – if you specify it to be run as the player, op or console, it will run them as the player, op or console.

Messaging

This plugin would be pretty useless if it didn't have a method to send custom messages to a player's chat screen. All color code formats are supported:

Reference Description Example
@@Message Send "Message" to the player who initiates the device @@Hello @player!

Statements

Statements allow you to run a command if a condition has been met, else optionally run an alternate command. This is useful if you want players with a specific permissions node, group or item to run a command:

Statement Description Example
@check Check if the player has a specific permission node @check foo.bar>@@Yes>@@No
@has Check if the player has a specific item @has 35>@@You have wool>@@You do not have wool
@in Check if the player is in a specific group @in moderators>@@You are a moderator>@@You are a @group

Manually editing devices

Device data is saved to Commander/devices.yml by default. if you are using an earlier version of Commander, simply rename "commands.yml" to "devices.yml":

Editing devices manually is useful when you have created an empty interface and wish to manually add your own commands to the device. This is also useful when you wish to add commands that cannot be entered into minecraft by default, such as long WorldEdit generation commands.

By defaults, commands in the devices.yml file do not contain a forward slash (/). If you want to add a command, simply write it out without the forward slash. With WorldEdit commands, you need to add one forward slash (instead of two):

say hello Normal /say command
/wand WorldEdit wand

Permissions

Permission Node Description
commander.device.use.player Allow players to use player commands on devices (enabled by default)
commander.device.use.op Allow players to use op commands on devices
commander.device.use.console Allow players to use console commands on devices
commander.device.break Allow players to break a device
commander.admin.add Add a command to a device
commander.admin.remove Remove a command from a device
commander.admin.clear Clear a device's interface
commander.admin.check Check a device's associated commands
commander.admin.list List all devices in all worlds
commander.admin.reload Reload commander

Further Ideas

  • I plan to convert all references into statements:

@player Bob>@@You are bob!>@@You are not bob!

@health 20>/give @player 57 1>@@You are not at full health

  • Tripwire support
  • I have LOOKED INTO adding commands to any block.

Homepage: dragonphase.com

ba55ment: ba55ment.org

Comments

Add a comment