Jump to content

[Share].logout command


Recommended Posts

create on datapack > voicedcommandhandler a new file .logout command and paste this in the command .. then you maybe gotta reg it on the gameserver , you know how > heres what you need to paste on the .logout java file

and

/*
* 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 com.l2jserver.gameserver.handler.voicedcommandhandlers;

import com.l2jserver.gameserver.handler.IVoicedCommandHandler;
import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;

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

public boolean useVoicedCommand(String command, L2PcInstance activeChar, String params)
{
	if (command.equalsIgnoreCase("logout"))
		activeChar.logout(false);
	return true;
}

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

 

All Credits : ` Dawn®[hide][/hide]

Link to comment
Share on other sites

This is completly Useless, but also brilliant. Thanks for sharing it with MxCheaters community Dawn, your shares rocks as hell :P

 

NOTE: Because everybody is giving Karma for simple Codes, i will give you too. Take it. +1

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.


×
×
  • Create New...