2011-03-19 22:39:51 +00:00
|
|
|
package com.earth2me.essentials.commands;
|
|
|
|
|
2011-11-18 03:18:03 +00:00
|
|
|
import com.earth2me.essentials.textreader.IText;
|
|
|
|
import com.earth2me.essentials.textreader.KeywordReplacer;
|
|
|
|
import com.earth2me.essentials.textreader.TextInput;
|
|
|
|
import com.earth2me.essentials.textreader.TextPager;
|
2011-03-19 22:39:51 +00:00
|
|
|
import org.bukkit.Server;
|
2011-05-04 10:06:47 +00:00
|
|
|
import org.bukkit.command.CommandSender;
|
2011-03-19 22:39:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
public class Commandrules extends EssentialsCommand
|
|
|
|
{
|
|
|
|
public Commandrules()
|
|
|
|
{
|
|
|
|
super("rules");
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2011-12-01 13:42:39 +00:00
|
|
|
public void run(final Server server, final CommandSender sender, final String commandLabel, final String[] args) throws Exception
|
2011-03-19 22:39:51 +00:00
|
|
|
{
|
2011-11-18 03:18:03 +00:00
|
|
|
final IText input = new TextInput(sender, "rules", true, ess);
|
|
|
|
final IText output = new KeywordReplacer(input, sender, ess);
|
|
|
|
final TextPager pager = new TextPager(output);
|
2011-11-28 19:52:15 +00:00
|
|
|
pager.showPage(args.length > 0 ? args[0] : null, args.length > 1 ? args[1] : null, "rules", sender);
|
2011-03-19 22:39:51 +00:00
|
|
|
}
|
|
|
|
}
|