69 lines
2.5 KiB
Java
69 lines
2.5 KiB
Java
/*
|
|
This file is part of the HeavenMS MapleStory Server, commands OdinMS-based
|
|
Copyleft (L) 2016 - 2018 RonanLana
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU Affero General Public License as
|
|
published by the Free Software Foundation version 3 as published by
|
|
the Free Software Foundation. You may not use, modify or distribute
|
|
this program under any other version of the GNU Affero General Public
|
|
License.
|
|
|
|
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 Affero General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
/*
|
|
@Author: Arthur L - Refactored command content into modules
|
|
*/
|
|
package client.command.commands.gm1;
|
|
|
|
import client.MapleCharacter;
|
|
import client.command.Command;
|
|
import client.MapleClient;
|
|
import constants.GameConstants;
|
|
import server.MaplePortal;
|
|
import server.maps.FieldLimit;
|
|
import server.maps.MapleMap;
|
|
import server.maps.MapleMiniDungeonInfo;
|
|
|
|
import java.util.HashMap;
|
|
|
|
public class GotoCommand extends Command {
|
|
{
|
|
setDescription("");
|
|
}
|
|
|
|
@Override
|
|
public void execute(MapleClient c, String[] params) {
|
|
final HashMap<String, Integer> gotomaps = GameConstants.GOTO_MAPS;
|
|
|
|
MapleCharacter player = c.getPlayer();
|
|
if (params.length < 1){
|
|
player.yellowMessage("Syntax: @goto <map name>");
|
|
return;
|
|
}
|
|
|
|
if (player.getEventInstance() != null || MapleMiniDungeonInfo.isDungeonMap(player.getMapId()) || FieldLimit.CANNOTMIGRATE.check(player.getMap().getFieldLimit()) || !player.isAlive()) {
|
|
player.yellowMessage("This command can not be used in this map.");
|
|
return;
|
|
}
|
|
|
|
if (gotomaps.containsKey(params[0])) {
|
|
MapleMap target = c.getChannelServer().getMapFactory().getMap(gotomaps.get(params[0]));
|
|
|
|
// expedition issue with this command detected thanks to Masterrulax
|
|
MaplePortal targetPortal = target.getRandomPlayerSpawnpoint();
|
|
player.saveLocationOnWarp();
|
|
player.changeMap(target, targetPortal);
|
|
} else {
|
|
player.dropMessage(5, "Area '" + params[0] + "' is not registered.");
|
|
}
|
|
}
|
|
}
|