Jump to content

Recommended Posts

Posted

Easy .pmoff voicedcommand to make the pm refusal mode accessible to players.

Credits to me.

(I know thats a very easy one to make so plz dont comment something like "easy to me" or else...that command only for FUN)

 

Tested and work on L2J ct2.2

 

/*
* This program is free software: you can redistribute it and/or modify it under
* the terms of the GNU General Public License as published by the Free Software
* Foundation, either version 3 of the License, or (at your option) any later
* version.
* 
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
* details.
* 
* You should have received a copy of the GNU General Public License along with
* this program. If not, see <http://www.gnu.org/licenses/>.
*/
package net.sf.l2j.gameserver.handler.voicedcommandhandlers;

import net.sf.l2j.gameserver.handler.IVoicedCommandHandler;
import net.sf.l2j.gameserver.model.actor.instance.L2PcInstance;
import net.sf.l2j.gameserver.network.SystemMessageId;
import net.sf.l2j.gameserver.network.serverpackets.SystemMessage;

/**
* @author Intrepid
*
*/

public class pmoff implements IVoicedCommandHandler
{
private static final String[] VOICED_COMMANDS = 
{ 
	"pmoff"
};

public boolean useVoicedCommand(String command, L2PcInstance activeChar, String target)
{
	if ((command.startsWith("pmoff")))
	{
		if (activeChar.getMessageRefusal()) // already in message refusal mode
		{
			activeChar.setMessageRefusal(false);
			activeChar.sendPacket(new SystemMessage(SystemMessageId.MESSAGE_ACCEPTANCE_MODE));
		}
		else
		{
			activeChar.setMessageRefusal(true);
			activeChar.sendPacket(new SystemMessage(SystemMessageId.MESSAGE_REFUSAL_MODE));
		}
	}
	return true;
}

public String[] getVoicedCommandList()
{
	return VOICED_COMMANDS;
}
}

Posted

Well... nobody said its very easy to make that.

But, /allblock does the exact same thing...

 

i know i know thats why i said just for fun:Pyou know thats more "special" i think because /allblock is work everywhere but find me a server where players can use a gm command(without access ofc):)

Posted

i know i know thats why i said just for fun:Pyou know thats more "special" i think because /allblock is work everywhere but find me a server where players can use a gm command(without access ofc):)

Well, ok. Its good to have those java modifications. :)

BTW you can make commands for trade refusal, duel, party etc.

That would be good.

Posted

Well, ok. Its good to have those java modifications. :)

BTW you can make commands for trade refusal, duel, party etc.

That would be good.

 

hmm good idea when i have some time i start to make them:D

Posted

/allblock

/allunblock

 

anyway gb... and thx for idea

 

you give me one idea :)

 

is for admins... when somene want to send pm to gm/admin and is refusal mode to see the  message xD

 

example :)

Players (NAME): tryed to say you "message" 

 

 

 

Posted

Everyone knew that.Bad post.

you cannot voted for bad post...

seems you can make something better?

he only posted for help and if you are newbie to java you can learn something from these codes...

 

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
Reply to this topic...

×   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...