Intrepid Posted February 19, 2009 Posted February 19, 2009 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; } } Quote
GoDofAdeN Posted February 20, 2009 Posted February 20, 2009 muahah, like //silence for players :D cool, thanks lol :D Quote
xXSkillerXx Posted February 20, 2009 Posted February 20, 2009 Well... nobody said its very easy to make that. But, /allblock does the exact same thing... Quote
Intrepid Posted February 20, 2009 Author Posted February 20, 2009 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):) Quote
xXSkillerXx Posted February 20, 2009 Posted February 20, 2009 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. Quote
Intrepid Posted February 20, 2009 Author Posted February 20, 2009 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 Quote
Fogotendx20 Posted February 20, 2009 Posted February 20, 2009 /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" Quote
sτrίkε- Posted February 20, 2009 Posted February 20, 2009 well i agree with forgoten... but you say just for fun! Continue My Friend! Quote
sτrίkε- Posted February 20, 2009 Posted February 20, 2009 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... Quote
Intrepid Posted February 25, 2009 Author Posted February 25, 2009 Works on l2off?? WTF?!?!you are joking right?:D L2OFF is C++ L2J is Java so no its not work Quote
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.