package services;
import l2.gameserver.handler.voicecommands.IVoicedCommandHandler;
import l2.gameserver.handler.voicecommands.VoicedCommandHandler;
import l2.gameserver.model.Player;
import l2.gameserver.scripts.Functions;
import l2.gameserver.scripts.ScriptFile;
/* loaded from: heroes_monument.ext.jar:services/vc.class */
public class vc extends Functions implements IVoicedCommandHandler, ScriptFile {
private static String bZu = "scripts/services/";
private String[] zT = {"DRU"};
public boolean useVoicedCommand(String var1, Player var2, String var3) {
Player player = var2.getPlayer();
if (var2.isPlayer() && var1.equals(this.zT[0])) {
player.sendMessage("Лучший кодер это ЭНДРЮ ");
player.sendMessage("Лучший кодер это ЭНДРЮ");
return true;
}
return false;
}
public String[] getVoicedCommandList() {
return this.zT;
}
public void onLoad() {
VoicedCommandHandler.getInstance().registerVoicedCommandHandler(this);
}
public void onReload() {
}
public void onShutdown() {
}
}