Jump to content
  • 0

Bot Window Voicedcommand Handler


disorder25

Question

I made a little voicedcommand to call the Bot window in case the player close it by mistake. I have no errors when I use the command but nothing happen. I got this error on the voicedcommandhandlers folder.

Error on: C:\Users\Giovanni Amorim\Desktop\Project_l2obs\game\data\scripts\handlers\voicedcommandhandlers\Code.java.error.log
Line: -1 - Column: -1

no main method in handlers.voicedcommandhandlers.Code

Can someone help me make this code work. Thank you in advance.

Here is the code.

package handlers.voicedcommandhandlers;

import com.l2jserver.gameserver.handler.IVoicedCommandHandler;
import com.l2jserver.gameserver.model.actor.instance.L2AntiBot;
import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;

/**
 * @author disorder25
 */
public class Code implements IVoicedCommandHandler
{
	private static String[] VOICED_COMMANDS =
	{
		"code"
	};
	
	@Override
	public boolean useVoicedCommand(String command, L2PcInstance activeChar, String target)
	{
		if (command.equalsIgnoreCase("code"))
		{
			L2AntiBot.ShowHtml_Start(activeChar);
		}
		else
		{
			activeChar.sendMessage("omg lame error! where is " + command + " ! blame the Server Admin");
		}
		return true;
	}
	
	@Override
	public String[] getVoicedCommandList()
	{
		return VOICED_COMMANDS;
	}
}
Link to comment
Share on other sites

7 answers to this question

Recommended Posts

  • 0

You must search how it voiced command handlers works...and i think you have this all false..

Did you have any command .code?

Where is code you mus put your command tour command starts with the java file for the .bot or i dont what you have...

 

And this L2AntiBot.ShowHtml_Start(activeChar); go not there...

 

if (command.equalsIgnoreCase("Your command"))

And up where is "code" change to "your command"

And sorry but im with phone and i cant help so much..

Edited by Reborn12
Link to comment
Share on other sites

  • 0

you don't even get the message in case that the code for the antibot is not working?
i mean this message that you set "omg lame error! where is " + command + " ! blame the Server Admin"

Link to comment
Share on other sites

  • 0

you don't even get the message in case that the code for the antibot is not working?

i mean this message that you set "omg lame error! where is " + command + " ! blame the Server Admin"

no I don't.

Link to comment
Share on other sites

  • 0

OK i got it to work now, I just need to add a restriction for it not to work in case they click "Confirm" without enter a code.

 

Here is the working code.

package handlers.voicedcommandhandlers;

import com.l2jserver.gameserver.handler.IVoicedCommandHandler;
import com.l2jserver.gameserver.model.actor.instance.L2AntiBot;
import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
import com.l2jserver.gameserver.network.serverpackets.NpcHtmlMessage;

/**
 * @author disorder25
 */
public class Code implements IVoicedCommandHandler
{
	private static String[] VOICED_COMMANDS =
	{
		"code"
	};
	
	@Override
	public boolean useVoicedCommand(String command, L2PcInstance player, String target)
	{
		NpcHtmlMessage _npcHtmlMessage = new NpcHtmlMessage(0);
		
		if (command.equalsIgnoreCase("code"))
		{
			_npcHtmlMessage.setHtml(L2AntiBot.ShowHtml_Start(player));
			player.getActingPlayer().sendPacket(_npcHtmlMessage);
		}
		else
		{
			player.sendMessage("omg lame error! where is " + command + " ! blame the Server Admin");
			return false;
		}
		return true;
	}
	
	@Override
	public String[] getVoicedCommandList()
	{
		return VOICED_COMMANDS;
	}
}
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...