Jump to content

Question

Posted (edited)

Hi guys, I try to add code for User Panel (by NeverMore) http://www.maxcheaters.com/topic/142327-user-panel-h5/ for my serverHigh Five. All goods. But in game i take " Command is disable by Admin"

Who can tell my how i can turn on?

Here is Config.

# ---------------------------------------------------------------------------
#  Custom User Panel (by NeverMore)
# ---------------------------------------------------------------------------
# Using this feature every single player will have the opportunity to press .user into the game !
# .user command have many actions and features like (Enable/Disable pm , trade , custom effect etc etc )
# ---------------------------------------------------------------------------
# Allow .user command
AllowUserCommand = True
# Allow .user command
AllowExpRefusal = True
# Allow trade off/on action
AllowTradeCommand = True
# Allow pm off/on action
AllowPmCommand = True
# Allow .effecton/off command ( using this command ,player will get a special aura )
AllowSpecialEffect = True

and here is voicecommandhandler:

package handlers.voicedcommandhandlers;

import com.l2jserver.Config;
import com.l2jserver.gameserver.GameTimeController;
import com.l2jserver.gameserver.cache.HtmCache;
import com.l2jserver.gameserver.handler.IVoicedCommandHandler;
import com.l2jserver.gameserver.model.L2World;
import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
import com.l2jserver.gameserver.network.serverpackets.ExShowScreenMessage;
import com.l2jserver.gameserver.network.serverpackets.NpcHtmlMessage;

/**
 * @author NeverMore
 */

public class User implements IVoicedCommandHandler
{
	public static final String[] VOICED_COMMANDS =
	{
		"user",
		"user1",
		"user2",
		"user3"
	};
	
	@Override
	public boolean useVoicedCommand(String command, L2PcInstance activeChar, String params)
	{
		if (Config.SHOW_USER)
		{
			if (command.equalsIgnoreCase("user"))
			{
				User.showUserPage(activeChar, "user.htm");
			}
			if (command.equalsIgnoreCase("user1"))
			{
				User.showUserPage(activeChar, "user1.htm");
			}
			if (command.equalsIgnoreCase("user2"))
			{
				User.showUserPage(activeChar, "user2.htm");
			}
			if (command.equalsIgnoreCase("user3"))
			{
				User.showUserPage(activeChar, "user3.htm");
			}
		}
		else
		{
			activeChar.sendMessage("This command is disabled");
			ExShowScreenMessage message1 = new ExShowScreenMessage("This command is disabled by admin!", 4000);
			activeChar.sendPacket(message1);
			return false;
		}
		return false;
	}
	
	public static String getServerRunTime()
	{
		int timeSeconds = (GameTimeController.getGameTicks() - 36000) / 10;
		String timeResult = "";
		if (timeSeconds >= 86400)
		{
			timeResult = Integer.toString(timeSeconds / 86400) + " Days " + Integer.toString((timeSeconds % 86400) / 3600) + " hours";
		}
		else
		{
			timeResult = Integer.toString(timeSeconds / 3600) + " Hours " + Integer.toString((timeSeconds % 3600) / 60) + " mins";
		}
		return timeResult;
	}
	
	public static String getRealOnline()
	{
		int counter = 0;
		for (L2PcInstance onlinePlayer : L2World.getInstance().getPlayers())
		{
			if (onlinePlayer.isOnline() && ((onlinePlayer.getClient() != null) && !onlinePlayer.getClient().isDetached()))
			{
				counter++;
			}
		}
		String realOnline = "<tr><td fixwidth=11></td><td FIXWIDTH=280>Players Active</td><td FIXWIDTH=470><font color=FF6600>" + counter + "</font></td></tr>" + "<tr><td fixwidth=11></td><td FIXWIDTH=280>Players Shops</td><td FIXWIDTH=470><font color=FF6600>"
			+ (L2World.getInstance().getAllPlayersCount() - counter) + "</font></td></tr>";
		return realOnline;
	}
	
	public static void showUserPage(L2PcInstance targetChar, String filename)
	{
		String content = HtmCache.getInstance().getHtmForce(targetChar.getHtmlPrefix(), "data/html/userpanel/" + filename);
		NpcHtmlMessage UserPanelReply = new NpcHtmlMessage(5);
		UserPanelReply.setHtml(content);
		UserPanelReply.replace("%online%", String.valueOf(L2World.getInstance().getPlayers().size()));
		UserPanelReply.replace("%name%", String.valueOf(targetChar.getName()));
		UserPanelReply.replace("%serveronline%", getRealOnline());
		UserPanelReply.replace("%servercapacity%", Integer.toString(Config.MAXIMUM_ONLINE_USERS));
		UserPanelReply.replace("%serverruntime%", getServerRunTime());
		UserPanelReply.replace("%playernumber%", String.valueOf(L2World.getInstance().getAllPlayersCount()));
		if (!Config.ENABLE_SPECIAL_EFFECT)
		{
			UserPanelReply.replace("%effect%", "Disabled");
		}
		else if (L2PcInstance._isoneffect == true)
		{
			UserPanelReply.replace("%effect%", "ON");
		}
		else
		{
			UserPanelReply.replace("%effect%", "OFF");
		}
		if (!Config.ENABLE_PM_REFUSAL)
		{
			UserPanelReply.replace("%pm%", "Disabled");
		}
		else if (L2PcInstance._ispmrefusal == true)
		{
			UserPanelReply.replace("%pm%", "ON");
		}
		else
		{
			UserPanelReply.replace("%pm%", "OFF");
		}
		if (!Config.ENABLE_TRADE_REFUSAL)
		{
			UserPanelReply.replace("%trade%", "Disabled");
		}
		else if (L2PcInstance._istraderefusal == true)
		{
			UserPanelReply.replace("%trade%", "ON");
		}
		else
		{
			UserPanelReply.replace("%trade%", "OFF");
		}
		if (!Config.ENABLE_EXP_REFUSAL)
		{
			UserPanelReply.replace("%exp%", "Disabled");
		}
		else if (L2PcInstance._isexpsprefusal == true)
		{
			UserPanelReply.replace("%exp%", "ON");
		}
		else
		{
			UserPanelReply.replace("%exp%", "OFF");
		}
		if (!Config.ENABLE_SPECIAL_EFFECT)
		{
			UserPanelReply.replace("%effect%", "Disabled");
		}
		else if (L2PcInstance._isoneffect == true)
		{
			UserPanelReply.replace("%effect%", "ON");
		}
		else
		{
			UserPanelReply.replace("%effect%", "OFF");
		}
		targetChar.sendPacket(UserPanelReply);
	}
	
	@Override
	public String[] getVoicedCommandList()
	{
		return VOICED_COMMANDS;
	}
}

I appreciate is somebody can help me.

Who know about activate this?

Edited by FactorX

4 answers to this question

Recommended Posts

  • 0
Posted

It's not code fault. Just your packs. Search over sources for that message and see which configs controls it and enable.

Guest
This topic is now closed to further replies.
  • Posts

    • Hi everyone, Since I’m no longer interested in L2 servers, if anyone is willing to continue the project, let me know. I’m currently selling the entire project. DM me for more information if you’re genuinely interested. I can offer limited free support for the first couple of months. It is not cheap. The sale includes the domain, the recently fully redesigned website, the updater, the interface, server files with Lucera ext source, and the database (excluding account passwords, emails, and other private information; character data can remain).   Server for test: https://lineage2.gold/download Server Info: https://lineage2.gold/info Over 110 videos YouTube playlist: https://www.youtube.com/watch?v=HO7BZaxUv2U&list=PLD9WZ0Nj-zstZaYeWxAxTKbX7ia2M_DUu&index=113  
    • You invent yourself a life - bad for you, one of the inner core dev, fernandopm, which worked hard over aCis quests from 2011 to 2016 is argentinian. I teached him back in time to work and make proper quests. My dev team comes from 10+ countries and I'm myself french. "Racist/nationalist" card ? Not working bro.   Not sure why I should thank you to send me questions, and regarding bug reports, so far, I got none of yours in either discord, gitlab, or forums. I'm sorry if you feel "ignored", but that's more a psychanalyst you need to speak with if you put emotions towards someones' appreciation over a forum. I never ignore a bug report, and if so (like skills reports), it's because I got a bigger plan (skills refactor, in that case). In any case, I delivered cookies for the bug report/fix, even if it dated of months, with proper credits over changesets. "Victim card" ? Not really working, but ok, maybe you're "emotional".   I barely make money out of aCis, for the spent time - simply selling my services, or even coding/administrating a minecraft/L2J server would make far more money. Breaking intentionally things would be stupid. If you don't understand I'm not the only one working on that pack, I can't help you. Also, the scale of edits is sometimes extreme - AI L2OFF ? 1800 files added. How do you want everything works in a single shot ? "Exploiting noobz for money" card ? Still not working, or I'm a terrible businessman.   Meanwhile - you shadow advertise your project, L2JOne (since 2017 btw) - you should maybe start by the beginning saying you're a competitor and aCis is actually a spike in your foot. That also explains why you act like that. RusAcis got the exact same strategy, speaking bad of me, saying they got unique fixes (you speak about I break things, they break and recode things 4 times sometimes, btw), but successfully reselling latest revision with poorly executed stuff. "aCis is good, Tryskell is ok, but I solve all issues in extreme low time so I can piss over him" card ? Mmmmhhhh.   Our conversation ends here if you want, I don't force ppl to speak with me if they don't want - hopefully, people would understand I'm not the arrogant one and the one who doesn't want to talk, or even collaborate. :). I understand you got your own project and got no will to improve aCis.   NOTE : I'm extremely happy for your call of ExShowServerPrimitive with getValidGeoLocation, extremely impressive. Arrogant, no. Sarcastic ? Maybe.   Good night everyone.
  • Topics

×
×
  • Create New...

Important Information

This community uses essential cookies to function properly. Non-essential cookies and third-party services are used only with your consent. Read our Privacy Policy and We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue..

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