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:-1no 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
*/publicclassCodeimplementsIVoicedCommandHandler{privatestaticString[] VOICED_COMMANDS ={"code"};@Overridepublicboolean 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");}returntrue;}@OverridepublicString[] getVoicedCommandList(){return VOICED_COMMANDS;}}
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.
Question
disorder25
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.
Can someone help me make this code work. Thank you in advance.
Here is the code.
7 answers to this question
Recommended Posts
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.