2013-07-13 20:11:13 +00:00
|
|
|
package me.StevenLawson.TotalFreedomMod.Commands;
|
|
|
|
|
|
|
|
import me.StevenLawson.TotalFreedomMod.TotalFreedomMod;
|
|
|
|
import org.bukkit.ChatColor;
|
|
|
|
import org.bukkit.command.Command;
|
|
|
|
import org.bukkit.command.CommandSender;
|
|
|
|
import org.bukkit.entity.Player;
|
|
|
|
|
|
|
|
@CommandPermissions(level = AdminLevel.ALL, source = SourceType.BOTH)
|
|
|
|
@CommandParameters(description = "Shows information about TotalFreedomMod", usage = "/<command>")
|
2013-07-14 12:10:29 +00:00
|
|
|
public class Command_tfm extends TFM_Command
|
|
|
|
{
|
2013-07-13 20:11:13 +00:00
|
|
|
@Override
|
|
|
|
public boolean run(CommandSender sender, Player sender_p, Command cmd, String commandLabel, String[] args, boolean senderIsConsole)
|
2013-08-10 00:11:17 +00:00
|
|
|
{
|
2014-04-21 12:37:53 +00:00
|
|
|
playerMsg(TotalFreedomMod.pluginName + " for 'Total Freedom', the original all-op server.", ChatColor.GOLD);
|
|
|
|
playerMsg(String.format("Version "
|
|
|
|
+ ChatColor.BLUE + "%s.%s" + ChatColor.GOLD + ", built "
|
|
|
|
+ ChatColor.BLUE + "%s" + ChatColor.GOLD + " by "
|
|
|
|
+ ChatColor.BLUE + "%s" + ChatColor.GOLD + ".",
|
|
|
|
TotalFreedomMod.pluginVersion,
|
|
|
|
TotalFreedomMod.buildNumber,
|
|
|
|
TotalFreedomMod.buildDate,
|
|
|
|
TotalFreedomMod.buildCreator), ChatColor.GOLD);
|
2013-07-13 20:11:13 +00:00
|
|
|
playerMsg("Created by Madgeek1450 and DarthSalamon.", ChatColor.GOLD);
|
2013-08-04 18:48:50 +00:00
|
|
|
playerMsg("Visit " + ChatColor.AQUA + "http://totalfreedom.me/" + ChatColor.GREEN + " for more information.", ChatColor.GREEN);
|
2013-07-13 20:11:13 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|