1
0
mirror of https://github.com/Rogiel/l2jserver2 synced 2025-12-10 17:32:46 +00:00

Teleporter implementation

Signed-off-by: Rogiel <rogiel@rogiel.com>
This commit is contained in:
2011-05-22 02:04:35 -03:00
parent b3ff0795ec
commit 87ce7bb987
31 changed files with 900 additions and 31 deletions

View File

@@ -0,0 +1,48 @@
/*
* This file is part of l2jserver <l2jserver.com>.
*
* l2jserver 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.
*
* l2jserver 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 l2jserver. If not, see <http://www.gnu.org/licenses/>.
*/
package com.l2jserver.service.admin;
import com.l2jserver.model.world.L2Character;
import com.l2jserver.service.Service;
/**
* This service handles administrators in the server
*
* @author <a href="http://www.rogiel.com">Rogiel</a>
*/
public interface AdministratorService extends Service {
/**
* Executes an command
*
* @param character
* the admin character
* @param command
* the command
* @param args
* the arguments
*/
void command(L2Character character, String command, String... args);
/**
* The base interface for Administrator commands
*
* @author <a href="http://www.rogiel.com">Rogiel</a>
*/
public interface AdministratorCommand {
void administrator(L2Character character, String... args);
}
}

View File

@@ -16,13 +16,21 @@
*/
package com.l2jserver.service.admin;
import com.l2jserver.service.Service;
import com.l2jserver.model.world.L2Character;
import com.l2jserver.service.AbstractService;
/**
* This service handles administrators in the server
*
* @author <a href="http://www.rogiel.com">Rogiel</a>
*
*/
public interface AdminService extends Service {
public class AdministratorServiceImpl extends AbstractService implements
AdministratorService {
@Override
public void command(L2Character character, String command, String... args) {
if(command.equals("log")) {
if(args.length == 2) {
}
}
}
}

View File

@@ -16,6 +16,7 @@
*/
package com.l2jserver.service.admin;
import com.l2jserver.model.world.L2Character;
import com.l2jserver.service.Service;
/**
@@ -24,5 +25,9 @@ import com.l2jserver.service.Service;
* @author <a href="http://www.rogiel.com">Rogiel</a>
*/
public interface GMService extends Service {
void command(L2Character character, String command, String... args);
public interface GMCommand {
void gm(L2Character character, String... args);
}
}