Add descriptions to all gm 1 commands
This commit is contained in:
@@ -24,13 +24,13 @@
|
|||||||
package client.command.commands.gm1;
|
package client.command.commands.gm1;
|
||||||
|
|
||||||
import client.MapleCharacter;
|
import client.MapleCharacter;
|
||||||
import client.command.Command;
|
|
||||||
import client.MapleClient;
|
import client.MapleClient;
|
||||||
|
import client.command.Command;
|
||||||
import server.life.MapleMonster;
|
import server.life.MapleMonster;
|
||||||
|
|
||||||
public class BossHpCommand extends Command {
|
public class BossHpCommand extends Command {
|
||||||
{
|
{
|
||||||
setDescription("");
|
setDescription("Show HP of bosses on current map.");
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|||||||
@@ -24,13 +24,13 @@
|
|||||||
package client.command.commands.gm1;
|
package client.command.commands.gm1;
|
||||||
|
|
||||||
import client.MapleCharacter;
|
import client.MapleCharacter;
|
||||||
|
import client.MapleClient;
|
||||||
import client.SkillFactory;
|
import client.SkillFactory;
|
||||||
import client.command.Command;
|
import client.command.Command;
|
||||||
import client.MapleClient;
|
|
||||||
|
|
||||||
public class BuffMeCommand extends Command {
|
public class BuffMeCommand extends Command {
|
||||||
{
|
{
|
||||||
setDescription("");
|
setDescription("Activate GM buffs on self.");
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|||||||
@@ -24,27 +24,18 @@
|
|||||||
package client.command.commands.gm1;
|
package client.command.commands.gm1;
|
||||||
|
|
||||||
import client.MapleCharacter;
|
import client.MapleCharacter;
|
||||||
import client.command.Command;
|
|
||||||
import client.MapleClient;
|
import client.MapleClient;
|
||||||
|
import client.command.Command;
|
||||||
import constants.game.GameConstants;
|
import constants.game.GameConstants;
|
||||||
import java.util.ArrayList;
|
import server.maps.*;
|
||||||
import java.util.Collections;
|
|
||||||
import server.maps.MaplePortal;
|
|
||||||
import server.maps.FieldLimit;
|
|
||||||
import server.maps.MapleMap;
|
|
||||||
import server.maps.MapleMapFactory;
|
|
||||||
import server.maps.MapleMiniDungeonInfo;
|
|
||||||
|
|
||||||
import java.util.Comparator;
|
import java.util.*;
|
||||||
import java.util.HashMap;
|
|
||||||
import java.util.List;
|
|
||||||
import java.util.Map;
|
|
||||||
import java.util.Map.Entry;
|
import java.util.Map.Entry;
|
||||||
|
|
||||||
public class GotoCommand extends Command {
|
public class GotoCommand extends Command {
|
||||||
|
|
||||||
{
|
{
|
||||||
setDescription("");
|
setDescription("Warp to a predefined map.");
|
||||||
|
|
||||||
List<Entry<String, Integer>> towns = new ArrayList<>(GameConstants.GOTO_TOWNS.entrySet());
|
List<Entry<String, Integer>> towns = new ArrayList<>(GameConstants.GOTO_TOWNS.entrySet());
|
||||||
sortGotoEntries(towns);
|
sortGotoEntries(towns);
|
||||||
|
|||||||
@@ -24,13 +24,13 @@
|
|||||||
package client.command.commands.gm1;
|
package client.command.commands.gm1;
|
||||||
|
|
||||||
import client.MapleCharacter;
|
import client.MapleCharacter;
|
||||||
import client.command.Command;
|
|
||||||
import client.MapleClient;
|
import client.MapleClient;
|
||||||
|
import client.command.Command;
|
||||||
import server.life.MapleMonster;
|
import server.life.MapleMonster;
|
||||||
|
|
||||||
public class MobHpCommand extends Command {
|
public class MobHpCommand extends Command {
|
||||||
{
|
{
|
||||||
setDescription("");
|
setDescription("Show HP of mobs on current map.");
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|||||||
@@ -24,8 +24,8 @@
|
|||||||
package client.command.commands.gm1;
|
package client.command.commands.gm1;
|
||||||
|
|
||||||
import client.MapleCharacter;
|
import client.MapleCharacter;
|
||||||
import client.command.Command;
|
|
||||||
import client.MapleClient;
|
import client.MapleClient;
|
||||||
|
import client.command.Command;
|
||||||
import server.MapleItemInformationProvider;
|
import server.MapleItemInformationProvider;
|
||||||
import server.life.MapleMonsterInformationProvider;
|
import server.life.MapleMonsterInformationProvider;
|
||||||
import server.life.MonsterDropEntry;
|
import server.life.MonsterDropEntry;
|
||||||
@@ -35,7 +35,7 @@ import java.util.Iterator;
|
|||||||
|
|
||||||
public class WhatDropsFromCommand extends Command {
|
public class WhatDropsFromCommand extends Command {
|
||||||
{
|
{
|
||||||
setDescription("");
|
setDescription("Show what items drop from a mob.");
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|||||||
@@ -38,7 +38,7 @@ import java.util.Iterator;
|
|||||||
|
|
||||||
public class WhoDropsCommand extends Command {
|
public class WhoDropsCommand extends Command {
|
||||||
{
|
{
|
||||||
setDescription("");
|
setDescription("Show what drops an item.");
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|||||||
Reference in New Issue
Block a user