12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- /*
- * This program is free software: you can redistribute it and/or modify it under
- * the terms of the GNU General Public License as published by the Free Software
- * Foundation, either version 3 of the License, or (at your option) any later
- * version.
- *
- * This program is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
- * details.
- *
- * You should have received a copy of the GNU General Public License along with
- * this program. If not, see <http://www.gnu.org/licenses/>.
- */
- package net.sf.l2j.gameserver.handler.voicedcommandhandlers;
- import java.util.Iterator;
- import javolution.text.TextBuilder;
- import net.sf.l2j.gameserver.handler.IVoicedCommandHandler;
- import net.sf.l2j.gameserver.model.L2World;
- import net.sf.l2j.gameserver.model.actor.instance.L2PcInstance;
- import net.sf.l2j.gameserver.network.serverpackets.NpcHtmlMessage;
- /**
- *
- *
- */
- public class stats implements IVoicedCommandHandler
- {
- private static final String[] VOICED_COMMANDS =
- {
- "stats"
- };
-
- /**
- *
- * @see net.sf.l2j.gameserver.handler.IVoicedCommandHandler#useVoicedCommand(java.lang.String, net.sf.l2j.gameserver.model.actor.instance.L2PcInstance, java.lang.String)
- */
- public boolean useVoicedCommand(String command, L2PcInstance activeChar, String target)
- {
- if (command.equalsIgnoreCase("stats"))
- {
- L2PcInstance pc = L2World.getInstance().getPlayer(target);
- if (pc != null)
- {
- NpcHtmlMessage adminReply = new NpcHtmlMessage(5);
-
- TextBuilder replyMSG = new TextBuilder("<html><body>");
-
- replyMSG.append("<center><font color=\"LEVEL\">[ L2J EVENT ENGINE ]</font></center><br>");
- replyMSG.append("<br>Statistics for player <font color=\"LEVEL\">" + pc.getName() + "</font><br>");
- replyMSG.append("Total kills <font color=\"FF0000\">" + pc.kills.size() + "</font><br>");
- replyMSG.append("<br>Detailed list: <br>");
- Iterator<String> it = pc.kills.iterator();
- while (it.hasNext())
- {
- replyMSG.append("<font color=\"FF0000\">" + it.next() + "</font><br>");
- }
- replyMSG.append("</body></html>");
-
- adminReply.setHtml(replyMSG.toString());
- activeChar.sendPacket(adminReply);
- }
-
- }
- return true;
- }
-
- /**
- *
- * @see net.sf.l2j.gameserver.handler.IVoicedCommandHandler#getVoicedCommandList()
- */
- public String[] getVoicedCommandList()
- {
- return VOICED_COMMANDS;
- }
-
- }
|