Cl
se vc tem seu serve no java, faz o seguindo
mude o nome do arquivo Cl.java p/ oq vc quer em net.sf.l2j.gameserver.handler.voicedcommandhandler s
depois abrindo ele vc vera no comeco ta assim
public class Cl implements IVoicedCommandHandler
{
private static final String[] VOICED_COMMANDS = { "cl" };
public boolean useVoicedCommand(String command, L2PcInstance activeChar, String target)
{
if (command.equalsIgnoreCase("cl"))
em net.sf.l2j.gameserver.GameServer.java
import net.sf.l2j.gameserver.handler.voicedcommandhandler s.Cl; << mude aki tambem,
_voicedCommandHandler.registerVoicedCommandHandler (new Cl());
_log.config("VoicedCommandHandler: Loaded .cl VoiceCommand handler.");
_log.config("VoicedCommandHandler: Loaded " + _voicedCommandHandler.size() + " handlers.");
onde esta, de vermelho vc muda, pra nome que vc quer o comando!
|