Add descriptions to all gm 3 commands

This commit is contained in:
P0nk
2021-04-06 20:00:43 +02:00
parent a9b23552b0
commit f9fcc79565
57 changed files with 154 additions and 156 deletions

View File

@@ -37,7 +37,7 @@ import java.sql.SQLException;
public class BanCommand extends Command { public class BanCommand extends Command {
{ {
setDescription(""); setDescription("Ban a player.");
} }
@Override @Override

View File

@@ -23,13 +23,13 @@
*/ */
package client.command.commands.gm3; package client.command.commands.gm3;
import client.command.Command;
import client.MapleClient;
import client.MapleCharacter; import client.MapleCharacter;
import client.MapleClient;
import client.command.Command;
public class ChatCommand extends Command { public class ChatCommand extends Command {
{ {
setDescription(""); setDescription("Toggle white GM chat.");
} }
@Override @Override

View File

@@ -24,13 +24,13 @@
package client.command.commands.gm3; package client.command.commands.gm3;
import client.MapleBuffStat; import client.MapleBuffStat;
import client.command.Command;
import client.MapleClient;
import client.MapleCharacter; import client.MapleCharacter;
import client.MapleClient;
import client.command.Command;
public class CheckDmgCommand extends Command { public class CheckDmgCommand extends Command {
{ {
setDescription(""); setDescription("Show stats and damage of a player.");
} }
@Override @Override

View File

@@ -23,13 +23,13 @@
*/ */
package client.command.commands.gm3; package client.command.commands.gm3;
import client.command.Command;
import client.MapleClient;
import client.MapleCharacter; import client.MapleCharacter;
import client.MapleClient;
import client.command.Command;
public class ClosePortalCommand extends Command { public class ClosePortalCommand extends Command {
{ {
setDescription(""); setDescription("Close a portal.");
} }
@Override @Override

View File

@@ -23,10 +23,10 @@
*/ */
package client.command.commands.gm3; package client.command.commands.gm3;
import client.MapleCharacter;
import client.MapleClient;
import client.MapleDisease; import client.MapleDisease;
import client.command.Command; import client.command.Command;
import client.MapleClient;
import client.MapleCharacter;
import server.life.MobSkill; import server.life.MobSkill;
import server.life.MobSkillFactory; import server.life.MobSkillFactory;
import server.maps.MapleMapObject; import server.maps.MapleMapObject;
@@ -36,7 +36,7 @@ import java.util.Arrays;
public class DebuffCommand extends Command { public class DebuffCommand extends Command {
{ {
setDescription(""); setDescription("Put a debuff on all nearby players.");
} }
@Override @Override

View File

@@ -23,13 +23,13 @@
*/ */
package client.command.commands.gm3; package client.command.commands.gm3;
import client.command.Command;
import client.MapleClient;
import client.MapleCharacter; import client.MapleCharacter;
import client.MapleClient;
import client.command.Command;
public class EndEventCommand extends Command { public class EndEventCommand extends Command {
{ {
setDescription(""); setDescription("Close entry for ongoing event.");
} }
@Override @Override

View File

@@ -23,9 +23,9 @@
*/ */
package client.command.commands.gm3; package client.command.commands.gm3;
import client.command.Command;
import client.MapleClient;
import client.MapleCharacter; import client.MapleCharacter;
import client.MapleClient;
import client.command.Command;
import net.server.Server; import net.server.Server;
import net.server.channel.Channel; import net.server.channel.Channel;
import server.expeditions.MapleExpedition; import server.expeditions.MapleExpedition;
@@ -35,7 +35,7 @@ import java.util.Map.Entry;
public class ExpedsCommand extends Command { public class ExpedsCommand extends Command {
{ {
setDescription(""); setDescription("Show all ongoing boss expeditions.");
} }
@Override @Override

View File

@@ -23,16 +23,16 @@
*/ */
package client.command.commands.gm3; package client.command.commands.gm3;
import client.MapleCharacter;
import client.MapleClient;
import client.MapleStat; import client.MapleStat;
import client.command.Command; import client.command.Command;
import client.MapleClient;
import client.MapleCharacter;
import constants.inventory.ItemConstants; import constants.inventory.ItemConstants;
import server.MapleItemInformationProvider; import server.MapleItemInformationProvider;
public class FaceCommand extends Command { public class FaceCommand extends Command {
{ {
setDescription(""); setDescription("Change face of a player.");
} }
@Override @Override

View File

@@ -23,14 +23,14 @@
*/ */
package client.command.commands.gm3; package client.command.commands.gm3;
import client.MapleCharacter;
import client.MapleClient;
import client.MapleStat; import client.MapleStat;
import client.command.Command; import client.command.Command;
import client.MapleClient;
import client.MapleCharacter;
public class FameCommand extends Command { public class FameCommand extends Command {
{ {
setDescription(""); setDescription("Set new fame value of a player.");
} }
@Override @Override

View File

@@ -23,14 +23,14 @@
*/ */
package client.command.commands.gm3; package client.command.commands.gm3;
import client.command.Command;
import client.MapleClient;
import client.MapleCharacter; import client.MapleCharacter;
import client.MapleClient;
import client.command.Command;
import net.server.Server; import net.server.Server;
public class FlyCommand extends Command { public class FlyCommand extends Command {
{ {
setDescription(""); setDescription("Enable/disable fly feature.");
} }
@Override @Override

View File

@@ -23,13 +23,13 @@
*/ */
package client.command.commands.gm3; package client.command.commands.gm3;
import client.command.Command;
import client.MapleClient;
import client.MapleCharacter; import client.MapleCharacter;
import client.MapleClient;
import client.command.Command;
public class GiveMesosCommand extends Command { public class GiveMesosCommand extends Command {
{ {
setDescription(""); setDescription("Give mesos to a player.");
} }
@Override @Override

View File

@@ -23,13 +23,13 @@
*/ */
package client.command.commands.gm3; package client.command.commands.gm3;
import client.command.Command;
import client.MapleClient;
import client.MapleCharacter; import client.MapleCharacter;
import client.MapleClient;
import client.command.Command;
public class GiveNxCommand extends Command { public class GiveNxCommand extends Command {
{ {
setDescription(""); setDescription("Give NX to a player.");
} }
@Override @Override

View File

@@ -6,7 +6,7 @@ import client.command.Command;
public class GiveRpCommand extends Command { public class GiveRpCommand extends Command {
{ {
setDescription(""); setDescription("Give reward points to a player.");
} }
@Override @Override

View File

@@ -23,13 +23,13 @@
*/ */
package client.command.commands.gm3; package client.command.commands.gm3;
import client.command.Command;
import client.MapleClient;
import client.MapleCharacter; import client.MapleCharacter;
import client.MapleClient;
import client.command.Command;
public class GiveVpCommand extends Command { public class GiveVpCommand extends Command {
{ {
setDescription(""); setDescription("Give vote points to a player.");
} }
@Override @Override

View File

@@ -23,16 +23,16 @@
*/ */
package client.command.commands.gm3; package client.command.commands.gm3;
import client.MapleCharacter;
import client.MapleClient;
import client.MapleStat; import client.MapleStat;
import client.command.Command; import client.command.Command;
import client.MapleClient;
import client.MapleCharacter;
import constants.inventory.ItemConstants; import constants.inventory.ItemConstants;
import server.MapleItemInformationProvider; import server.MapleItemInformationProvider;
public class HairCommand extends Command { public class HairCommand extends Command {
{ {
setDescription(""); setDescription("Change hair of a player.");
} }
@Override @Override

View File

@@ -23,14 +23,13 @@
*/ */
package client.command.commands.gm3; package client.command.commands.gm3;
import client.MapleStat;
import client.command.Command;
import client.MapleClient;
import client.MapleCharacter; import client.MapleCharacter;
import client.MapleClient;
import client.command.Command;
public class HealMapCommand extends Command { public class HealMapCommand extends Command {
{ {
setDescription(""); setDescription("Heal all HP/MP of all players in the map.");
} }
@Override @Override

View File

@@ -23,14 +23,13 @@
*/ */
package client.command.commands.gm3; package client.command.commands.gm3;
import client.MapleStat;
import client.command.Command;
import client.MapleClient;
import client.MapleCharacter; import client.MapleCharacter;
import client.MapleClient;
import client.command.Command;
public class HealPersonCommand extends Command { public class HealPersonCommand extends Command {
{ {
setDescription(""); setDescription("Heal all HP/MP of a player.");
} }
@Override @Override

View File

@@ -23,13 +23,13 @@
*/ */
package client.command.commands.gm3; package client.command.commands.gm3;
import client.command.Command;
import client.MapleClient;
import client.MapleCharacter; import client.MapleCharacter;
import client.MapleClient;
import client.command.Command;
public class HpMpCommand extends Command { public class HpMpCommand extends Command {
{ {
setDescription(""); setDescription("Set HP/MP of a player.");
} }
@Override @Override

View File

@@ -23,13 +23,13 @@
*/ */
package client.command.commands.gm3; package client.command.commands.gm3;
import client.command.Command;
import client.MapleClient;
import client.MapleCharacter; import client.MapleCharacter;
import client.MapleClient;
import client.command.Command;
public class HurtCommand extends Command { public class HurtCommand extends Command {
{ {
setDescription(""); setDescription("Nearly kill a player.");
} }
@Override @Override

View File

@@ -23,16 +23,16 @@
*/ */
package client.command.commands.gm3; package client.command.commands.gm3;
import client.command.Command;
import client.MapleClient;
import client.MapleCharacter; import client.MapleCharacter;
import client.MapleClient;
import client.command.Command;
import net.server.Server; import net.server.Server;
import tools.MapleLogger; import tools.MapleLogger;
import tools.MaplePacketCreator; import tools.MaplePacketCreator;
public class IgnoreCommand extends Command { public class IgnoreCommand extends Command {
{ {
setDescription(""); setDescription("Toggle enable/disable ignore a player in packet logs and autoban.");
} }
@Override @Override

View File

@@ -23,14 +23,14 @@
*/ */
package client.command.commands.gm3; package client.command.commands.gm3;
import client.command.Command;
import client.MapleClient;
import client.MapleCharacter; import client.MapleCharacter;
import client.MapleClient;
import client.command.Command;
import tools.MapleLogger; import tools.MapleLogger;
public class IgnoredCommand extends Command { public class IgnoredCommand extends Command {
{ {
setDescription(""); setDescription("Show all players being ignored in logs.");
} }
@Override @Override

View File

@@ -23,13 +23,13 @@
*/ */
package client.command.commands.gm3; package client.command.commands.gm3;
import client.command.Command;
import client.MapleClient;
import client.MapleCharacter; import client.MapleCharacter;
import client.MapleClient;
import client.command.Command;
public class InMapCommand extends Command { public class InMapCommand extends Command {
{ {
setDescription(""); setDescription("Show all players in the map.");
} }
@Override @Override

View File

@@ -23,9 +23,9 @@
*/ */
package client.command.commands.gm3; package client.command.commands.gm3;
import client.command.Command;
import client.MapleClient;
import client.MapleCharacter; import client.MapleCharacter;
import client.MapleClient;
import client.command.Command;
import server.life.MapleMonster; import server.life.MapleMonster;
import server.maps.MapleMap; import server.maps.MapleMap;
import server.maps.MapleMapObject; import server.maps.MapleMapObject;
@@ -36,7 +36,7 @@ import java.util.List;
public class KillAllCommand extends Command { public class KillAllCommand extends Command {
{ {
setDescription(""); setDescription("Kill all mobs in the map.");
} }
@Override @Override

View File

@@ -23,15 +23,15 @@
*/ */
package client.command.commands.gm3; package client.command.commands.gm3;
import client.command.Command;
import client.MapleClient;
import client.MapleCharacter; import client.MapleCharacter;
import client.MapleClient;
import client.command.Command;
import net.server.Server; import net.server.Server;
import tools.MaplePacketCreator; import tools.MaplePacketCreator;
public class KillCommand extends Command { public class KillCommand extends Command {
{ {
setDescription(""); setDescription("Kill a player.");
} }
@Override @Override

View File

@@ -23,13 +23,13 @@
*/ */
package client.command.commands.gm3; package client.command.commands.gm3;
import client.command.Command;
import client.MapleClient;
import client.MapleCharacter; import client.MapleCharacter;
import client.MapleClient;
import client.command.Command;
public class KillMapCommand extends Command { public class KillMapCommand extends Command {
{ {
setDescription(""); setDescription("Kill all players in the map.");
} }
@Override @Override

View File

@@ -23,14 +23,14 @@
*/ */
package client.command.commands.gm3; package client.command.commands.gm3;
import client.command.Command;
import client.MapleClient;
import client.MapleCharacter; import client.MapleCharacter;
import client.MapleClient;
import client.command.Command;
import tools.MaplePacketCreator; import tools.MaplePacketCreator;
public class MaxEnergyCommand extends Command { public class MaxEnergyCommand extends Command {
{ {
setDescription(""); setDescription("Set dojo energy to max value.");
} }
@Override @Override

View File

@@ -23,13 +23,13 @@
*/ */
package client.command.commands.gm3; package client.command.commands.gm3;
import client.command.Command;
import client.MapleClient;
import client.MapleCharacter; import client.MapleCharacter;
import client.MapleClient;
import client.command.Command;
public class MaxHpMpCommand extends Command { public class MaxHpMpCommand extends Command {
{ {
setDescription(""); setDescription("Set base HP/MP of a player.");
} }
@Override @Override

View File

@@ -23,16 +23,16 @@
*/ */
package client.command.commands.gm3; package client.command.commands.gm3;
import client.command.Command;
import client.MapleClient;
import client.MapleCharacter; import client.MapleCharacter;
import client.MapleClient;
import client.command.Command;
import net.server.Server; import net.server.Server;
import tools.MapleLogger; import tools.MapleLogger;
import tools.MaplePacketCreator; import tools.MaplePacketCreator;
public class MonitorCommand extends Command { public class MonitorCommand extends Command {
{ {
setDescription(""); setDescription("Toggle logging the packets of a player.");
} }
@Override @Override

View File

@@ -23,14 +23,14 @@
*/ */
package client.command.commands.gm3; package client.command.commands.gm3;
import client.command.Command;
import client.MapleClient;
import client.MapleCharacter; import client.MapleCharacter;
import client.MapleClient;
import client.command.Command;
import tools.MapleLogger; import tools.MapleLogger;
public class MonitorsCommand extends Command { public class MonitorsCommand extends Command {
{ {
setDescription(""); setDescription("Show all players having their packets logged.");
} }
@Override @Override

View File

@@ -23,15 +23,15 @@
*/ */
package client.command.commands.gm3; package client.command.commands.gm3;
import client.command.Command;
import client.MapleClient;
import client.MapleCharacter; import client.MapleCharacter;
import client.MapleClient;
import client.command.Command;
import constants.game.GameConstants; import constants.game.GameConstants;
import tools.MaplePacketCreator; import tools.MaplePacketCreator;
public class MusicCommand extends Command { public class MusicCommand extends Command {
{ {
setDescription(""); setDescription("Play a song.");
} }
private static String getSongList() { private static String getSongList() {

View File

@@ -23,13 +23,13 @@
*/ */
package client.command.commands.gm3; package client.command.commands.gm3;
import client.command.Command;
import client.MapleClient;
import client.MapleCharacter; import client.MapleCharacter;
import client.MapleClient;
import client.command.Command;
public class MuteMapCommand extends Command { public class MuteMapCommand extends Command {
{ {
setDescription(""); setDescription("Toggle mute players in the map.");
} }
@Override @Override

View File

@@ -23,13 +23,13 @@
*/ */
package client.command.commands.gm3; package client.command.commands.gm3;
import client.command.Command;
import client.MapleClient;
import client.MapleCharacter; import client.MapleCharacter;
import client.MapleClient;
import client.command.Command;
public class NightCommand extends Command { public class NightCommand extends Command {
{ {
setDescription(""); setDescription("Set sky background to black.");
} }
@Override @Override

View File

@@ -23,15 +23,15 @@
*/ */
package client.command.commands.gm3; package client.command.commands.gm3;
import client.command.Command;
import client.MapleClient;
import client.MapleCharacter; import client.MapleCharacter;
import client.MapleClient;
import client.command.Command;
import net.server.Server; import net.server.Server;
import tools.MaplePacketCreator; import tools.MaplePacketCreator;
public class NoticeCommand extends Command { public class NoticeCommand extends Command {
{ {
setDescription(""); setDescription("Send a blue message to everyone on the server.");
} }
@Override @Override

View File

@@ -23,16 +23,16 @@
*/ */
package client.command.commands.gm3; package client.command.commands.gm3;
import client.command.Command;
import client.MapleClient;
import client.MapleCharacter; import client.MapleCharacter;
import client.MapleClient;
import client.command.Command;
import server.life.MapleLifeFactory; import server.life.MapleLifeFactory;
import server.life.MapleNPC; import server.life.MapleNPC;
import tools.MaplePacketCreator; import tools.MaplePacketCreator;
public class NpcCommand extends Command { public class NpcCommand extends Command {
{ {
setDescription(""); setDescription("Spawn an NPC on your location.");
} }
@Override @Override

View File

@@ -23,15 +23,15 @@
*/ */
package client.command.commands.gm3; package client.command.commands.gm3;
import client.command.Command;
import client.MapleClient;
import client.MapleCharacter; import client.MapleCharacter;
import client.MapleClient;
import client.command.Command;
import net.server.Server; import net.server.Server;
import net.server.channel.Channel; import net.server.channel.Channel;
public class OnlineTwoCommand extends Command { public class OnlineTwoCommand extends Command {
{ {
setDescription(""); setDescription("Show all online players.");
} }
@Override @Override

View File

@@ -23,13 +23,13 @@
*/ */
package client.command.commands.gm3; package client.command.commands.gm3;
import client.command.Command;
import client.MapleClient;
import client.MapleCharacter; import client.MapleCharacter;
import client.MapleClient;
import client.command.Command;
public class OpenPortalCommand extends Command { public class OpenPortalCommand extends Command {
{ {
setDescription(""); setDescription("Open a portal on the map.");
} }
@Override @Override

View File

@@ -23,9 +23,9 @@
*/ */
package client.command.commands.gm3; package client.command.commands.gm3;
import client.command.Command;
import client.MapleClient;
import client.MapleCharacter; import client.MapleCharacter;
import client.MapleClient;
import client.command.Command;
import net.MaplePacketHandler; import net.MaplePacketHandler;
import net.PacketProcessor; import net.PacketProcessor;
import tools.FilePrinter; import tools.FilePrinter;
@@ -42,7 +42,7 @@ import java.util.Properties;
public class PeCommand extends Command { public class PeCommand extends Command {
{ {
setDescription(""); setDescription("Handle synthesized packets from file, and handle them as if sent from a client");
} }
@Override @Override

View File

@@ -23,13 +23,13 @@
*/ */
package client.command.commands.gm3; package client.command.commands.gm3;
import client.command.Command;
import client.MapleClient;
import client.MapleCharacter; import client.MapleCharacter;
import client.MapleClient;
import client.command.Command;
public class PosCommand extends Command { public class PosCommand extends Command {
{ {
setDescription(""); setDescription("Show current position and foothold.");
} }
@Override @Override

View File

@@ -23,14 +23,14 @@
*/ */
package client.command.commands.gm3; package client.command.commands.gm3;
import client.command.Command;
import client.MapleClient;
import client.MapleCharacter; import client.MapleCharacter;
import client.MapleClient;
import client.command.Command;
import server.quest.MapleQuest; import server.quest.MapleQuest;
public class QuestCompleteCommand extends Command { public class QuestCompleteCommand extends Command {
{ {
setDescription(""); setDescription("Complete an active quest.");
} }
@Override @Override

View File

@@ -23,14 +23,14 @@
*/ */
package client.command.commands.gm3; package client.command.commands.gm3;
import client.command.Command;
import client.MapleClient;
import client.MapleCharacter; import client.MapleCharacter;
import client.MapleClient;
import client.command.Command;
import server.quest.MapleQuest; import server.quest.MapleQuest;
public class QuestResetCommand extends Command { public class QuestResetCommand extends Command {
{ {
setDescription(""); setDescription("Reset a completed quest.");
} }
@Override @Override

View File

@@ -23,14 +23,14 @@
*/ */
package client.command.commands.gm3; package client.command.commands.gm3;
import client.command.Command;
import client.MapleClient;
import client.MapleCharacter; import client.MapleCharacter;
import client.MapleClient;
import client.command.Command;
import server.quest.MapleQuest; import server.quest.MapleQuest;
public class QuestStartCommand extends Command { public class QuestStartCommand extends Command {
{ {
setDescription(""); setDescription("Start a quest.");
} }
@Override @Override

View File

@@ -23,14 +23,14 @@
*/ */
package client.command.commands.gm3; package client.command.commands.gm3;
import client.command.Command;
import client.MapleClient;
import client.MapleCharacter; import client.MapleCharacter;
import client.MapleClient;
import client.command.Command;
import server.life.MapleMonsterInformationProvider; import server.life.MapleMonsterInformationProvider;
public class ReloadDropsCommand extends Command { public class ReloadDropsCommand extends Command {
{ {
setDescription(""); setDescription("Reload all drop data.");
} }
@Override @Override

View File

@@ -23,15 +23,15 @@
*/ */
package client.command.commands.gm3; package client.command.commands.gm3;
import client.command.Command;
import client.MapleClient;
import client.MapleCharacter; import client.MapleCharacter;
import client.MapleClient;
import client.command.Command;
import net.server.Server; import net.server.Server;
import net.server.channel.Channel; import net.server.channel.Channel;
public class ReloadEventsCommand extends Command { public class ReloadEventsCommand extends Command {
{ {
setDescription(""); setDescription("Reload all event data.");
} }
@Override @Override

View File

@@ -23,16 +23,16 @@
*/ */
package client.command.commands.gm3; package client.command.commands.gm3;
import client.command.Command;
import client.MapleClient;
import client.MapleCharacter; import client.MapleCharacter;
import client.MapleClient;
import client.command.Command;
import server.maps.MapleMap; import server.maps.MapleMap;
import java.util.Collection; import java.util.Collection;
public class ReloadMapCommand extends Command { public class ReloadMapCommand extends Command {
{ {
setDescription(""); setDescription("Reload the map.");
} }
@Override @Override

View File

@@ -23,14 +23,14 @@
*/ */
package client.command.commands.gm3; package client.command.commands.gm3;
import client.command.Command;
import client.MapleClient;
import client.MapleCharacter; import client.MapleCharacter;
import client.MapleClient;
import client.command.Command;
import scripting.portal.PortalScriptManager; import scripting.portal.PortalScriptManager;
public class ReloadPortalsCommand extends Command { public class ReloadPortalsCommand extends Command {
{ {
setDescription(""); setDescription("Reload all portal scripts.");
} }
@Override @Override

View File

@@ -23,14 +23,14 @@
*/ */
package client.command.commands.gm3; package client.command.commands.gm3;
import client.command.Command;
import client.MapleClient; import client.MapleClient;
import client.command.Command;
import server.MapleShopFactory; import server.MapleShopFactory;
public class ReloadShopsCommand extends Command { public class ReloadShopsCommand extends Command {
{ {
setDescription(""); setDescription("Reload popup shops and NPC shops.");
} }
@Override @Override

View File

@@ -23,15 +23,15 @@
*/ */
package client.command.commands.gm3; package client.command.commands.gm3;
import client.command.Command;
import client.MapleClient;
import client.MapleCharacter; import client.MapleCharacter;
import client.MapleClient;
import client.command.Command;
import net.server.Server; import net.server.Server;
import tools.MaplePacketCreator; import tools.MaplePacketCreator;
public class RipCommand extends Command { public class RipCommand extends Command {
{ {
setDescription(""); setDescription("Send a RIP notice.");
} }
@Override @Override

View File

@@ -23,16 +23,16 @@
*/ */
package client.command.commands.gm3; package client.command.commands.gm3;
import client.command.Command;
import client.MapleClient;
import client.MapleCharacter; import client.MapleCharacter;
import client.MapleClient;
import client.command.Command;
import client.inventory.Item; import client.inventory.Item;
import java.awt.*; import java.awt.*;
public class SeedCommand extends Command { public class SeedCommand extends Command {
{ {
setDescription(""); setDescription("Drop all seeds inside Henesys PQ.");
} }
@Override @Override

View File

@@ -23,15 +23,15 @@
*/ */
package client.command.commands.gm3; package client.command.commands.gm3;
import client.command.Command;
import client.MapleClient;
import client.MapleCharacter; import client.MapleCharacter;
import client.MapleClient;
import client.command.Command;
import server.life.MapleLifeFactory; import server.life.MapleLifeFactory;
import server.life.MapleMonster; import server.life.MapleMonster;
public class SpawnCommand extends Command { public class SpawnCommand extends Command {
{ {
setDescription(""); setDescription("Spawn mob(s) on your location.");
} }
@Override @Override

View File

@@ -23,16 +23,16 @@
*/ */
package client.command.commands.gm3; package client.command.commands.gm3;
import client.command.Command;
import client.MapleClient;
import client.MapleCharacter; import client.MapleCharacter;
import client.MapleClient;
import client.command.Command;
import net.server.Server; import net.server.Server;
import server.events.gm.MapleEvent; import server.events.gm.MapleEvent;
import tools.MaplePacketCreator; import tools.MaplePacketCreator;
public class StartEventCommand extends Command { public class StartEventCommand extends Command {
{ {
setDescription(""); setDescription("Start an event on current map.");
} }
@Override @Override

View File

@@ -28,7 +28,7 @@ import client.command.Command;
public class StartMapEventCommand extends Command { public class StartMapEventCommand extends Command {
{ {
setDescription(""); setDescription("Start a \"classic\" event on current map.");
} }
@Override @Override

View File

@@ -28,7 +28,7 @@ import client.command.Command;
public class StopMapEventCommand extends Command { public class StopMapEventCommand extends Command {
{ {
setDescription(""); setDescription("Stop ongoing \"classic\" event.");
} }
@Override @Override

View File

@@ -30,7 +30,7 @@ import tools.MaplePacketCreator;
public class TimerAllCommand extends Command { public class TimerAllCommand extends Command {
{ {
setDescription(""); setDescription("Set a server wide timer.");
} }
@Override @Override

View File

@@ -30,7 +30,7 @@ import tools.MaplePacketCreator;
public class TimerCommand extends Command { public class TimerCommand extends Command {
{ {
setDescription(""); setDescription("Set timer on a player in current map.");
} }
@Override @Override

View File

@@ -30,7 +30,7 @@ import tools.MaplePacketCreator;
public class TimerMapCommand extends Command { public class TimerMapCommand extends Command {
{ {
setDescription(""); setDescription("Set timer on all players in current map.");
} }
@Override @Override

View File

@@ -23,14 +23,14 @@
*/ */
package client.command.commands.gm3; package client.command.commands.gm3;
import client.command.Command;
import client.MapleClient;
import client.MapleCharacter; import client.MapleCharacter;
import client.MapleClient;
import client.command.Command;
import net.server.Server; import net.server.Server;
public class ToggleCouponCommand extends Command { public class ToggleCouponCommand extends Command {
{ {
setDescription(""); setDescription("Toggle enable/disable a coupon.");
} }
@Override @Override

View File

@@ -33,7 +33,7 @@ import java.sql.PreparedStatement;
public class UnBanCommand extends Command { public class UnBanCommand extends Command {
{ {
setDescription(""); setDescription("Unban a player.");
} }
@Override @Override