Jump to content
  • 0

Bot Window Voicedcommand Handler


Question

Posted

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;
	}
}

7 answers to this question

Recommended Posts

  • 0
Posted (edited)

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
  • 0
Posted

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"

  • 0
Posted

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.

  • 0
Posted

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;
	}
}

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now


  • Posts

    • Rosyk or rusik or whatever u blaim me that my mouth stinks but I assume you the one who stinks and your perfect pack will be now shared and you can suck a DICK )  https://eu2.contabostorage.com/d4b39866f6bb4084b6c969ec8fe20063:kita/Lucera_Classic_Remaster/Lucera Classic Remaster Server and Datapack files.rar  https://eu2.contabostorage.com/d4b39866f6bb4084b6c969ec8fe20063:kita/Lucera_Classic_Remaster/Lucera Classic Remaster Eng Client.rar Drama link    For this crap u need Lucera 2 classic license ) people paying 300 euros for this shit  lol
    • @Huggo Thank you for asking! When you join our Discord, on the Nexus Marketing section there is a #work-showcase channel. There you can see a little bit of what we are able to produce as a final ready-to-post product.  There is also this link in my new personal montage YouTube channel, in which I will be uploading every recent work: https://youtube.com/playlist?list=PLkzBKexKw8Wj8dC2diYndd5yOWOXUQCJW&si=-HGxlovqzvD4qqy2 Two more videos are coming up this week, and a #reviews channel has opened for our clients to let other people know about their experience working with us. Feel free to join our Hub in Discord, and for any inquries you might have don't hesitate to contact me or post your suggestion at #suggestions channel.  
    • Следи за своим вонючим языком, мудак.   Your mouth stinks, go wash your mouth, it's a dump) I don't know who you are or what you are, and I don't recommend buying anything from people outside of my network, as they may sell garbage under the guise of my work. There have been cases where my sales have been compromised. Additionally, reselling below the purchase price has been prohibited. I wish you all the best and peace. I kindly request that the moderators close this topic, as it is no longer relevant and the contact information is outdated.    
  • Topics

×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock