From f9fcc79565fd29011808d691fc863715f6ba15bb Mon Sep 17 00:00:00 2001 From: P0nk Date: Tue, 6 Apr 2021 20:00:43 +0200 Subject: [PATCH] Add descriptions to all gm 3 commands --- src/main/java/client/command/commands/gm3/BanCommand.java | 2 +- src/main/java/client/command/commands/gm3/ChatCommand.java | 6 +++--- .../java/client/command/commands/gm3/CheckDmgCommand.java | 6 +++--- .../client/command/commands/gm3/ClosePortalCommand.java | 6 +++--- .../java/client/command/commands/gm3/DebuffCommand.java | 6 +++--- .../java/client/command/commands/gm3/EndEventCommand.java | 6 +++--- .../java/client/command/commands/gm3/ExpedsCommand.java | 6 +++--- src/main/java/client/command/commands/gm3/FaceCommand.java | 6 +++--- src/main/java/client/command/commands/gm3/FameCommand.java | 6 +++--- src/main/java/client/command/commands/gm3/FlyCommand.java | 6 +++--- .../java/client/command/commands/gm3/GiveMesosCommand.java | 6 +++--- .../java/client/command/commands/gm3/GiveNxCommand.java | 6 +++--- .../java/client/command/commands/gm3/GiveRpCommand.java | 2 +- .../java/client/command/commands/gm3/GiveVpCommand.java | 6 +++--- src/main/java/client/command/commands/gm3/HairCommand.java | 6 +++--- .../java/client/command/commands/gm3/HealMapCommand.java | 7 +++---- .../client/command/commands/gm3/HealPersonCommand.java | 7 +++---- src/main/java/client/command/commands/gm3/HpMpCommand.java | 6 +++--- src/main/java/client/command/commands/gm3/HurtCommand.java | 6 +++--- .../java/client/command/commands/gm3/IgnoreCommand.java | 6 +++--- .../java/client/command/commands/gm3/IgnoredCommand.java | 6 +++--- .../java/client/command/commands/gm3/InMapCommand.java | 6 +++--- .../java/client/command/commands/gm3/KillAllCommand.java | 6 +++--- src/main/java/client/command/commands/gm3/KillCommand.java | 6 +++--- .../java/client/command/commands/gm3/KillMapCommand.java | 6 +++--- .../java/client/command/commands/gm3/MaxEnergyCommand.java | 6 +++--- .../java/client/command/commands/gm3/MaxHpMpCommand.java | 6 +++--- .../java/client/command/commands/gm3/MonitorCommand.java | 6 +++--- .../java/client/command/commands/gm3/MonitorsCommand.java | 6 +++--- .../java/client/command/commands/gm3/MusicCommand.java | 6 +++--- .../java/client/command/commands/gm3/MuteMapCommand.java | 6 +++--- .../java/client/command/commands/gm3/NightCommand.java | 6 +++--- .../java/client/command/commands/gm3/NoticeCommand.java | 6 +++--- src/main/java/client/command/commands/gm3/NpcCommand.java | 6 +++--- .../java/client/command/commands/gm3/OnlineTwoCommand.java | 6 +++--- .../client/command/commands/gm3/OpenPortalCommand.java | 6 +++--- src/main/java/client/command/commands/gm3/PeCommand.java | 6 +++--- src/main/java/client/command/commands/gm3/PosCommand.java | 6 +++--- .../client/command/commands/gm3/QuestCompleteCommand.java | 6 +++--- .../client/command/commands/gm3/QuestResetCommand.java | 6 +++--- .../client/command/commands/gm3/QuestStartCommand.java | 6 +++--- .../client/command/commands/gm3/ReloadDropsCommand.java | 6 +++--- .../client/command/commands/gm3/ReloadEventsCommand.java | 6 +++--- .../java/client/command/commands/gm3/ReloadMapCommand.java | 6 +++--- .../client/command/commands/gm3/ReloadPortalsCommand.java | 6 +++--- .../client/command/commands/gm3/ReloadShopsCommand.java | 4 ++-- src/main/java/client/command/commands/gm3/RipCommand.java | 6 +++--- src/main/java/client/command/commands/gm3/SeedCommand.java | 6 +++--- .../java/client/command/commands/gm3/SpawnCommand.java | 6 +++--- .../client/command/commands/gm3/StartEventCommand.java | 6 +++--- .../client/command/commands/gm3/StartMapEventCommand.java | 2 +- .../client/command/commands/gm3/StopMapEventCommand.java | 2 +- .../java/client/command/commands/gm3/TimerAllCommand.java | 2 +- .../java/client/command/commands/gm3/TimerCommand.java | 2 +- .../java/client/command/commands/gm3/TimerMapCommand.java | 2 +- .../client/command/commands/gm3/ToggleCouponCommand.java | 6 +++--- .../java/client/command/commands/gm3/UnBanCommand.java | 2 +- 57 files changed, 154 insertions(+), 156 deletions(-) diff --git a/src/main/java/client/command/commands/gm3/BanCommand.java b/src/main/java/client/command/commands/gm3/BanCommand.java index bfb3e55aaf..e47c549cae 100644 --- a/src/main/java/client/command/commands/gm3/BanCommand.java +++ b/src/main/java/client/command/commands/gm3/BanCommand.java @@ -37,7 +37,7 @@ import java.sql.SQLException; public class BanCommand extends Command { { - setDescription(""); + setDescription("Ban a player."); } @Override diff --git a/src/main/java/client/command/commands/gm3/ChatCommand.java b/src/main/java/client/command/commands/gm3/ChatCommand.java index e6bc0c87bc..8931b55fd0 100644 --- a/src/main/java/client/command/commands/gm3/ChatCommand.java +++ b/src/main/java/client/command/commands/gm3/ChatCommand.java @@ -23,13 +23,13 @@ */ package client.command.commands.gm3; -import client.command.Command; -import client.MapleClient; import client.MapleCharacter; +import client.MapleClient; +import client.command.Command; public class ChatCommand extends Command { { - setDescription(""); + setDescription("Toggle white GM chat."); } @Override diff --git a/src/main/java/client/command/commands/gm3/CheckDmgCommand.java b/src/main/java/client/command/commands/gm3/CheckDmgCommand.java index 98369de7f5..4545443dc5 100644 --- a/src/main/java/client/command/commands/gm3/CheckDmgCommand.java +++ b/src/main/java/client/command/commands/gm3/CheckDmgCommand.java @@ -24,13 +24,13 @@ package client.command.commands.gm3; import client.MapleBuffStat; -import client.command.Command; -import client.MapleClient; import client.MapleCharacter; +import client.MapleClient; +import client.command.Command; public class CheckDmgCommand extends Command { { - setDescription(""); + setDescription("Show stats and damage of a player."); } @Override diff --git a/src/main/java/client/command/commands/gm3/ClosePortalCommand.java b/src/main/java/client/command/commands/gm3/ClosePortalCommand.java index 8d53a8260a..5e0b5d6709 100644 --- a/src/main/java/client/command/commands/gm3/ClosePortalCommand.java +++ b/src/main/java/client/command/commands/gm3/ClosePortalCommand.java @@ -23,13 +23,13 @@ */ package client.command.commands.gm3; -import client.command.Command; -import client.MapleClient; import client.MapleCharacter; +import client.MapleClient; +import client.command.Command; public class ClosePortalCommand extends Command { { - setDescription(""); + setDescription("Close a portal."); } @Override diff --git a/src/main/java/client/command/commands/gm3/DebuffCommand.java b/src/main/java/client/command/commands/gm3/DebuffCommand.java index e10e7d29b9..c60e006b3d 100644 --- a/src/main/java/client/command/commands/gm3/DebuffCommand.java +++ b/src/main/java/client/command/commands/gm3/DebuffCommand.java @@ -23,10 +23,10 @@ */ package client.command.commands.gm3; +import client.MapleCharacter; +import client.MapleClient; import client.MapleDisease; import client.command.Command; -import client.MapleClient; -import client.MapleCharacter; import server.life.MobSkill; import server.life.MobSkillFactory; import server.maps.MapleMapObject; @@ -36,7 +36,7 @@ import java.util.Arrays; public class DebuffCommand extends Command { { - setDescription(""); + setDescription("Put a debuff on all nearby players."); } @Override diff --git a/src/main/java/client/command/commands/gm3/EndEventCommand.java b/src/main/java/client/command/commands/gm3/EndEventCommand.java index f0a5c9f28a..3ccfb23c7a 100644 --- a/src/main/java/client/command/commands/gm3/EndEventCommand.java +++ b/src/main/java/client/command/commands/gm3/EndEventCommand.java @@ -23,13 +23,13 @@ */ package client.command.commands.gm3; -import client.command.Command; -import client.MapleClient; import client.MapleCharacter; +import client.MapleClient; +import client.command.Command; public class EndEventCommand extends Command { { - setDescription(""); + setDescription("Close entry for ongoing event."); } @Override diff --git a/src/main/java/client/command/commands/gm3/ExpedsCommand.java b/src/main/java/client/command/commands/gm3/ExpedsCommand.java index fd993067f5..45e3ac2ff6 100644 --- a/src/main/java/client/command/commands/gm3/ExpedsCommand.java +++ b/src/main/java/client/command/commands/gm3/ExpedsCommand.java @@ -23,9 +23,9 @@ */ package client.command.commands.gm3; -import client.command.Command; -import client.MapleClient; import client.MapleCharacter; +import client.MapleClient; +import client.command.Command; import net.server.Server; import net.server.channel.Channel; import server.expeditions.MapleExpedition; @@ -35,7 +35,7 @@ import java.util.Map.Entry; public class ExpedsCommand extends Command { { - setDescription(""); + setDescription("Show all ongoing boss expeditions."); } @Override diff --git a/src/main/java/client/command/commands/gm3/FaceCommand.java b/src/main/java/client/command/commands/gm3/FaceCommand.java index 018854b110..e225159e69 100644 --- a/src/main/java/client/command/commands/gm3/FaceCommand.java +++ b/src/main/java/client/command/commands/gm3/FaceCommand.java @@ -23,16 +23,16 @@ */ package client.command.commands.gm3; +import client.MapleCharacter; +import client.MapleClient; import client.MapleStat; import client.command.Command; -import client.MapleClient; -import client.MapleCharacter; import constants.inventory.ItemConstants; import server.MapleItemInformationProvider; public class FaceCommand extends Command { { - setDescription(""); + setDescription("Change face of a player."); } @Override diff --git a/src/main/java/client/command/commands/gm3/FameCommand.java b/src/main/java/client/command/commands/gm3/FameCommand.java index ec4be73785..6d38c9dfb8 100644 --- a/src/main/java/client/command/commands/gm3/FameCommand.java +++ b/src/main/java/client/command/commands/gm3/FameCommand.java @@ -23,14 +23,14 @@ */ package client.command.commands.gm3; +import client.MapleCharacter; +import client.MapleClient; import client.MapleStat; import client.command.Command; -import client.MapleClient; -import client.MapleCharacter; public class FameCommand extends Command { { - setDescription(""); + setDescription("Set new fame value of a player."); } @Override diff --git a/src/main/java/client/command/commands/gm3/FlyCommand.java b/src/main/java/client/command/commands/gm3/FlyCommand.java index 255a3689c7..138dd9bdb6 100644 --- a/src/main/java/client/command/commands/gm3/FlyCommand.java +++ b/src/main/java/client/command/commands/gm3/FlyCommand.java @@ -23,14 +23,14 @@ */ package client.command.commands.gm3; -import client.command.Command; -import client.MapleClient; import client.MapleCharacter; +import client.MapleClient; +import client.command.Command; import net.server.Server; public class FlyCommand extends Command { { - setDescription(""); + setDescription("Enable/disable fly feature."); } @Override diff --git a/src/main/java/client/command/commands/gm3/GiveMesosCommand.java b/src/main/java/client/command/commands/gm3/GiveMesosCommand.java index fe51fb97e3..3d86c8ee06 100644 --- a/src/main/java/client/command/commands/gm3/GiveMesosCommand.java +++ b/src/main/java/client/command/commands/gm3/GiveMesosCommand.java @@ -23,13 +23,13 @@ */ package client.command.commands.gm3; -import client.command.Command; -import client.MapleClient; import client.MapleCharacter; +import client.MapleClient; +import client.command.Command; public class GiveMesosCommand extends Command { { - setDescription(""); + setDescription("Give mesos to a player."); } @Override diff --git a/src/main/java/client/command/commands/gm3/GiveNxCommand.java b/src/main/java/client/command/commands/gm3/GiveNxCommand.java index 31f1ebdeae..b04b2de021 100644 --- a/src/main/java/client/command/commands/gm3/GiveNxCommand.java +++ b/src/main/java/client/command/commands/gm3/GiveNxCommand.java @@ -23,13 +23,13 @@ */ package client.command.commands.gm3; -import client.command.Command; -import client.MapleClient; import client.MapleCharacter; +import client.MapleClient; +import client.command.Command; public class GiveNxCommand extends Command { { - setDescription(""); + setDescription("Give NX to a player."); } @Override diff --git a/src/main/java/client/command/commands/gm3/GiveRpCommand.java b/src/main/java/client/command/commands/gm3/GiveRpCommand.java index a4c860b27d..f43d8753b1 100644 --- a/src/main/java/client/command/commands/gm3/GiveRpCommand.java +++ b/src/main/java/client/command/commands/gm3/GiveRpCommand.java @@ -6,7 +6,7 @@ import client.command.Command; public class GiveRpCommand extends Command { { - setDescription(""); + setDescription("Give reward points to a player."); } @Override diff --git a/src/main/java/client/command/commands/gm3/GiveVpCommand.java b/src/main/java/client/command/commands/gm3/GiveVpCommand.java index 36f656ed0c..f677e874cd 100644 --- a/src/main/java/client/command/commands/gm3/GiveVpCommand.java +++ b/src/main/java/client/command/commands/gm3/GiveVpCommand.java @@ -23,13 +23,13 @@ */ package client.command.commands.gm3; -import client.command.Command; -import client.MapleClient; import client.MapleCharacter; +import client.MapleClient; +import client.command.Command; public class GiveVpCommand extends Command { { - setDescription(""); + setDescription("Give vote points to a player."); } @Override diff --git a/src/main/java/client/command/commands/gm3/HairCommand.java b/src/main/java/client/command/commands/gm3/HairCommand.java index 187ad4db63..22f01cf49a 100644 --- a/src/main/java/client/command/commands/gm3/HairCommand.java +++ b/src/main/java/client/command/commands/gm3/HairCommand.java @@ -23,16 +23,16 @@ */ package client.command.commands.gm3; +import client.MapleCharacter; +import client.MapleClient; import client.MapleStat; import client.command.Command; -import client.MapleClient; -import client.MapleCharacter; import constants.inventory.ItemConstants; import server.MapleItemInformationProvider; public class HairCommand extends Command { { - setDescription(""); + setDescription("Change hair of a player."); } @Override diff --git a/src/main/java/client/command/commands/gm3/HealMapCommand.java b/src/main/java/client/command/commands/gm3/HealMapCommand.java index 8614b57992..8a870350ea 100644 --- a/src/main/java/client/command/commands/gm3/HealMapCommand.java +++ b/src/main/java/client/command/commands/gm3/HealMapCommand.java @@ -23,14 +23,13 @@ */ package client.command.commands.gm3; -import client.MapleStat; -import client.command.Command; -import client.MapleClient; import client.MapleCharacter; +import client.MapleClient; +import client.command.Command; public class HealMapCommand extends Command { { - setDescription(""); + setDescription("Heal all HP/MP of all players in the map."); } @Override diff --git a/src/main/java/client/command/commands/gm3/HealPersonCommand.java b/src/main/java/client/command/commands/gm3/HealPersonCommand.java index 2b8698805b..9c2cde8e38 100644 --- a/src/main/java/client/command/commands/gm3/HealPersonCommand.java +++ b/src/main/java/client/command/commands/gm3/HealPersonCommand.java @@ -23,14 +23,13 @@ */ package client.command.commands.gm3; -import client.MapleStat; -import client.command.Command; -import client.MapleClient; import client.MapleCharacter; +import client.MapleClient; +import client.command.Command; public class HealPersonCommand extends Command { { - setDescription(""); + setDescription("Heal all HP/MP of a player."); } @Override diff --git a/src/main/java/client/command/commands/gm3/HpMpCommand.java b/src/main/java/client/command/commands/gm3/HpMpCommand.java index 5b80a78698..b23502f58a 100644 --- a/src/main/java/client/command/commands/gm3/HpMpCommand.java +++ b/src/main/java/client/command/commands/gm3/HpMpCommand.java @@ -23,13 +23,13 @@ */ package client.command.commands.gm3; -import client.command.Command; -import client.MapleClient; import client.MapleCharacter; +import client.MapleClient; +import client.command.Command; public class HpMpCommand extends Command { { - setDescription(""); + setDescription("Set HP/MP of a player."); } @Override diff --git a/src/main/java/client/command/commands/gm3/HurtCommand.java b/src/main/java/client/command/commands/gm3/HurtCommand.java index 0c34380113..6eb93ca6c3 100644 --- a/src/main/java/client/command/commands/gm3/HurtCommand.java +++ b/src/main/java/client/command/commands/gm3/HurtCommand.java @@ -23,13 +23,13 @@ */ package client.command.commands.gm3; -import client.command.Command; -import client.MapleClient; import client.MapleCharacter; +import client.MapleClient; +import client.command.Command; public class HurtCommand extends Command { { - setDescription(""); + setDescription("Nearly kill a player."); } @Override diff --git a/src/main/java/client/command/commands/gm3/IgnoreCommand.java b/src/main/java/client/command/commands/gm3/IgnoreCommand.java index b2a6affd7f..4fc0ceb168 100644 --- a/src/main/java/client/command/commands/gm3/IgnoreCommand.java +++ b/src/main/java/client/command/commands/gm3/IgnoreCommand.java @@ -23,16 +23,16 @@ */ package client.command.commands.gm3; -import client.command.Command; -import client.MapleClient; import client.MapleCharacter; +import client.MapleClient; +import client.command.Command; import net.server.Server; import tools.MapleLogger; import tools.MaplePacketCreator; public class IgnoreCommand extends Command { { - setDescription(""); + setDescription("Toggle enable/disable ignore a player in packet logs and autoban."); } @Override diff --git a/src/main/java/client/command/commands/gm3/IgnoredCommand.java b/src/main/java/client/command/commands/gm3/IgnoredCommand.java index e22e17e6e7..f15617e6dc 100644 --- a/src/main/java/client/command/commands/gm3/IgnoredCommand.java +++ b/src/main/java/client/command/commands/gm3/IgnoredCommand.java @@ -23,14 +23,14 @@ */ package client.command.commands.gm3; -import client.command.Command; -import client.MapleClient; import client.MapleCharacter; +import client.MapleClient; +import client.command.Command; import tools.MapleLogger; public class IgnoredCommand extends Command { { - setDescription(""); + setDescription("Show all players being ignored in logs."); } @Override diff --git a/src/main/java/client/command/commands/gm3/InMapCommand.java b/src/main/java/client/command/commands/gm3/InMapCommand.java index 830fc08013..ef66e72085 100644 --- a/src/main/java/client/command/commands/gm3/InMapCommand.java +++ b/src/main/java/client/command/commands/gm3/InMapCommand.java @@ -23,13 +23,13 @@ */ package client.command.commands.gm3; -import client.command.Command; -import client.MapleClient; import client.MapleCharacter; +import client.MapleClient; +import client.command.Command; public class InMapCommand extends Command { { - setDescription(""); + setDescription("Show all players in the map."); } @Override diff --git a/src/main/java/client/command/commands/gm3/KillAllCommand.java b/src/main/java/client/command/commands/gm3/KillAllCommand.java index 0301bde1ac..db5e0cc40c 100644 --- a/src/main/java/client/command/commands/gm3/KillAllCommand.java +++ b/src/main/java/client/command/commands/gm3/KillAllCommand.java @@ -23,9 +23,9 @@ */ package client.command.commands.gm3; -import client.command.Command; -import client.MapleClient; import client.MapleCharacter; +import client.MapleClient; +import client.command.Command; import server.life.MapleMonster; import server.maps.MapleMap; import server.maps.MapleMapObject; @@ -36,7 +36,7 @@ import java.util.List; public class KillAllCommand extends Command { { - setDescription(""); + setDescription("Kill all mobs in the map."); } @Override diff --git a/src/main/java/client/command/commands/gm3/KillCommand.java b/src/main/java/client/command/commands/gm3/KillCommand.java index 10efc9db8e..e18387c3e4 100644 --- a/src/main/java/client/command/commands/gm3/KillCommand.java +++ b/src/main/java/client/command/commands/gm3/KillCommand.java @@ -23,15 +23,15 @@ */ package client.command.commands.gm3; -import client.command.Command; -import client.MapleClient; import client.MapleCharacter; +import client.MapleClient; +import client.command.Command; import net.server.Server; import tools.MaplePacketCreator; public class KillCommand extends Command { { - setDescription(""); + setDescription("Kill a player."); } @Override diff --git a/src/main/java/client/command/commands/gm3/KillMapCommand.java b/src/main/java/client/command/commands/gm3/KillMapCommand.java index 9f62cfe890..486bf8e628 100644 --- a/src/main/java/client/command/commands/gm3/KillMapCommand.java +++ b/src/main/java/client/command/commands/gm3/KillMapCommand.java @@ -23,13 +23,13 @@ */ package client.command.commands.gm3; -import client.command.Command; -import client.MapleClient; import client.MapleCharacter; +import client.MapleClient; +import client.command.Command; public class KillMapCommand extends Command { { - setDescription(""); + setDescription("Kill all players in the map."); } @Override diff --git a/src/main/java/client/command/commands/gm3/MaxEnergyCommand.java b/src/main/java/client/command/commands/gm3/MaxEnergyCommand.java index fb22a9f6dc..71cf8bba41 100644 --- a/src/main/java/client/command/commands/gm3/MaxEnergyCommand.java +++ b/src/main/java/client/command/commands/gm3/MaxEnergyCommand.java @@ -23,14 +23,14 @@ */ package client.command.commands.gm3; -import client.command.Command; -import client.MapleClient; import client.MapleCharacter; +import client.MapleClient; +import client.command.Command; import tools.MaplePacketCreator; public class MaxEnergyCommand extends Command { { - setDescription(""); + setDescription("Set dojo energy to max value."); } @Override diff --git a/src/main/java/client/command/commands/gm3/MaxHpMpCommand.java b/src/main/java/client/command/commands/gm3/MaxHpMpCommand.java index a53f6317c6..9b9a0e116e 100644 --- a/src/main/java/client/command/commands/gm3/MaxHpMpCommand.java +++ b/src/main/java/client/command/commands/gm3/MaxHpMpCommand.java @@ -23,13 +23,13 @@ */ package client.command.commands.gm3; -import client.command.Command; -import client.MapleClient; import client.MapleCharacter; +import client.MapleClient; +import client.command.Command; public class MaxHpMpCommand extends Command { { - setDescription(""); + setDescription("Set base HP/MP of a player."); } @Override diff --git a/src/main/java/client/command/commands/gm3/MonitorCommand.java b/src/main/java/client/command/commands/gm3/MonitorCommand.java index e7fb5c8a28..89aa250421 100644 --- a/src/main/java/client/command/commands/gm3/MonitorCommand.java +++ b/src/main/java/client/command/commands/gm3/MonitorCommand.java @@ -23,16 +23,16 @@ */ package client.command.commands.gm3; -import client.command.Command; -import client.MapleClient; import client.MapleCharacter; +import client.MapleClient; +import client.command.Command; import net.server.Server; import tools.MapleLogger; import tools.MaplePacketCreator; public class MonitorCommand extends Command { { - setDescription(""); + setDescription("Toggle logging the packets of a player."); } @Override diff --git a/src/main/java/client/command/commands/gm3/MonitorsCommand.java b/src/main/java/client/command/commands/gm3/MonitorsCommand.java index d4d5f27857..2a72da5ed5 100644 --- a/src/main/java/client/command/commands/gm3/MonitorsCommand.java +++ b/src/main/java/client/command/commands/gm3/MonitorsCommand.java @@ -23,14 +23,14 @@ */ package client.command.commands.gm3; -import client.command.Command; -import client.MapleClient; import client.MapleCharacter; +import client.MapleClient; +import client.command.Command; import tools.MapleLogger; public class MonitorsCommand extends Command { { - setDescription(""); + setDescription("Show all players having their packets logged."); } @Override diff --git a/src/main/java/client/command/commands/gm3/MusicCommand.java b/src/main/java/client/command/commands/gm3/MusicCommand.java index acd71dd211..407c0ff901 100644 --- a/src/main/java/client/command/commands/gm3/MusicCommand.java +++ b/src/main/java/client/command/commands/gm3/MusicCommand.java @@ -23,15 +23,15 @@ */ package client.command.commands.gm3; -import client.command.Command; -import client.MapleClient; import client.MapleCharacter; +import client.MapleClient; +import client.command.Command; import constants.game.GameConstants; import tools.MaplePacketCreator; public class MusicCommand extends Command { { - setDescription(""); + setDescription("Play a song."); } private static String getSongList() { diff --git a/src/main/java/client/command/commands/gm3/MuteMapCommand.java b/src/main/java/client/command/commands/gm3/MuteMapCommand.java index 966b8bbfa0..90dd6062ef 100644 --- a/src/main/java/client/command/commands/gm3/MuteMapCommand.java +++ b/src/main/java/client/command/commands/gm3/MuteMapCommand.java @@ -23,13 +23,13 @@ */ package client.command.commands.gm3; -import client.command.Command; -import client.MapleClient; import client.MapleCharacter; +import client.MapleClient; +import client.command.Command; public class MuteMapCommand extends Command { { - setDescription(""); + setDescription("Toggle mute players in the map."); } @Override diff --git a/src/main/java/client/command/commands/gm3/NightCommand.java b/src/main/java/client/command/commands/gm3/NightCommand.java index df83dd2494..fa17256f5a 100644 --- a/src/main/java/client/command/commands/gm3/NightCommand.java +++ b/src/main/java/client/command/commands/gm3/NightCommand.java @@ -23,13 +23,13 @@ */ package client.command.commands.gm3; -import client.command.Command; -import client.MapleClient; import client.MapleCharacter; +import client.MapleClient; +import client.command.Command; public class NightCommand extends Command { { - setDescription(""); + setDescription("Set sky background to black."); } @Override diff --git a/src/main/java/client/command/commands/gm3/NoticeCommand.java b/src/main/java/client/command/commands/gm3/NoticeCommand.java index 71527e9ea0..deee048b39 100644 --- a/src/main/java/client/command/commands/gm3/NoticeCommand.java +++ b/src/main/java/client/command/commands/gm3/NoticeCommand.java @@ -23,15 +23,15 @@ */ package client.command.commands.gm3; -import client.command.Command; -import client.MapleClient; import client.MapleCharacter; +import client.MapleClient; +import client.command.Command; import net.server.Server; import tools.MaplePacketCreator; public class NoticeCommand extends Command { { - setDescription(""); + setDescription("Send a blue message to everyone on the server."); } @Override diff --git a/src/main/java/client/command/commands/gm3/NpcCommand.java b/src/main/java/client/command/commands/gm3/NpcCommand.java index ce993020b4..eb49eb438a 100644 --- a/src/main/java/client/command/commands/gm3/NpcCommand.java +++ b/src/main/java/client/command/commands/gm3/NpcCommand.java @@ -23,16 +23,16 @@ */ package client.command.commands.gm3; -import client.command.Command; -import client.MapleClient; import client.MapleCharacter; +import client.MapleClient; +import client.command.Command; import server.life.MapleLifeFactory; import server.life.MapleNPC; import tools.MaplePacketCreator; public class NpcCommand extends Command { { - setDescription(""); + setDescription("Spawn an NPC on your location."); } @Override diff --git a/src/main/java/client/command/commands/gm3/OnlineTwoCommand.java b/src/main/java/client/command/commands/gm3/OnlineTwoCommand.java index 148fb7a181..103439efcf 100644 --- a/src/main/java/client/command/commands/gm3/OnlineTwoCommand.java +++ b/src/main/java/client/command/commands/gm3/OnlineTwoCommand.java @@ -23,15 +23,15 @@ */ package client.command.commands.gm3; -import client.command.Command; -import client.MapleClient; import client.MapleCharacter; +import client.MapleClient; +import client.command.Command; import net.server.Server; import net.server.channel.Channel; public class OnlineTwoCommand extends Command { { - setDescription(""); + setDescription("Show all online players."); } @Override diff --git a/src/main/java/client/command/commands/gm3/OpenPortalCommand.java b/src/main/java/client/command/commands/gm3/OpenPortalCommand.java index 1cfca75ddb..46810f587e 100644 --- a/src/main/java/client/command/commands/gm3/OpenPortalCommand.java +++ b/src/main/java/client/command/commands/gm3/OpenPortalCommand.java @@ -23,13 +23,13 @@ */ package client.command.commands.gm3; -import client.command.Command; -import client.MapleClient; import client.MapleCharacter; +import client.MapleClient; +import client.command.Command; public class OpenPortalCommand extends Command { { - setDescription(""); + setDescription("Open a portal on the map."); } @Override diff --git a/src/main/java/client/command/commands/gm3/PeCommand.java b/src/main/java/client/command/commands/gm3/PeCommand.java index cf104f50de..886bee1616 100644 --- a/src/main/java/client/command/commands/gm3/PeCommand.java +++ b/src/main/java/client/command/commands/gm3/PeCommand.java @@ -23,9 +23,9 @@ */ package client.command.commands.gm3; -import client.command.Command; -import client.MapleClient; import client.MapleCharacter; +import client.MapleClient; +import client.command.Command; import net.MaplePacketHandler; import net.PacketProcessor; import tools.FilePrinter; @@ -42,7 +42,7 @@ import java.util.Properties; public class PeCommand extends Command { { - setDescription(""); + setDescription("Handle synthesized packets from file, and handle them as if sent from a client"); } @Override diff --git a/src/main/java/client/command/commands/gm3/PosCommand.java b/src/main/java/client/command/commands/gm3/PosCommand.java index 2ea48ec745..f4ebc8d758 100644 --- a/src/main/java/client/command/commands/gm3/PosCommand.java +++ b/src/main/java/client/command/commands/gm3/PosCommand.java @@ -23,13 +23,13 @@ */ package client.command.commands.gm3; -import client.command.Command; -import client.MapleClient; import client.MapleCharacter; +import client.MapleClient; +import client.command.Command; public class PosCommand extends Command { { - setDescription(""); + setDescription("Show current position and foothold."); } @Override diff --git a/src/main/java/client/command/commands/gm3/QuestCompleteCommand.java b/src/main/java/client/command/commands/gm3/QuestCompleteCommand.java index 8595b37b6e..eb8bb787e0 100644 --- a/src/main/java/client/command/commands/gm3/QuestCompleteCommand.java +++ b/src/main/java/client/command/commands/gm3/QuestCompleteCommand.java @@ -23,14 +23,14 @@ */ package client.command.commands.gm3; -import client.command.Command; -import client.MapleClient; import client.MapleCharacter; +import client.MapleClient; +import client.command.Command; import server.quest.MapleQuest; public class QuestCompleteCommand extends Command { { - setDescription(""); + setDescription("Complete an active quest."); } @Override diff --git a/src/main/java/client/command/commands/gm3/QuestResetCommand.java b/src/main/java/client/command/commands/gm3/QuestResetCommand.java index 4f67ee9da9..99fa79a106 100644 --- a/src/main/java/client/command/commands/gm3/QuestResetCommand.java +++ b/src/main/java/client/command/commands/gm3/QuestResetCommand.java @@ -23,14 +23,14 @@ */ package client.command.commands.gm3; -import client.command.Command; -import client.MapleClient; import client.MapleCharacter; +import client.MapleClient; +import client.command.Command; import server.quest.MapleQuest; public class QuestResetCommand extends Command { { - setDescription(""); + setDescription("Reset a completed quest."); } @Override diff --git a/src/main/java/client/command/commands/gm3/QuestStartCommand.java b/src/main/java/client/command/commands/gm3/QuestStartCommand.java index 5ad3caef31..70e3c5b6f4 100644 --- a/src/main/java/client/command/commands/gm3/QuestStartCommand.java +++ b/src/main/java/client/command/commands/gm3/QuestStartCommand.java @@ -23,14 +23,14 @@ */ package client.command.commands.gm3; -import client.command.Command; -import client.MapleClient; import client.MapleCharacter; +import client.MapleClient; +import client.command.Command; import server.quest.MapleQuest; public class QuestStartCommand extends Command { { - setDescription(""); + setDescription("Start a quest."); } @Override diff --git a/src/main/java/client/command/commands/gm3/ReloadDropsCommand.java b/src/main/java/client/command/commands/gm3/ReloadDropsCommand.java index 5abc056e30..71c3cd66e2 100644 --- a/src/main/java/client/command/commands/gm3/ReloadDropsCommand.java +++ b/src/main/java/client/command/commands/gm3/ReloadDropsCommand.java @@ -23,14 +23,14 @@ */ package client.command.commands.gm3; -import client.command.Command; -import client.MapleClient; import client.MapleCharacter; +import client.MapleClient; +import client.command.Command; import server.life.MapleMonsterInformationProvider; public class ReloadDropsCommand extends Command { { - setDescription(""); + setDescription("Reload all drop data."); } @Override diff --git a/src/main/java/client/command/commands/gm3/ReloadEventsCommand.java b/src/main/java/client/command/commands/gm3/ReloadEventsCommand.java index 6dbaa7f9de..5eda37558d 100644 --- a/src/main/java/client/command/commands/gm3/ReloadEventsCommand.java +++ b/src/main/java/client/command/commands/gm3/ReloadEventsCommand.java @@ -23,15 +23,15 @@ */ package client.command.commands.gm3; -import client.command.Command; -import client.MapleClient; import client.MapleCharacter; +import client.MapleClient; +import client.command.Command; import net.server.Server; import net.server.channel.Channel; public class ReloadEventsCommand extends Command { { - setDescription(""); + setDescription("Reload all event data."); } @Override diff --git a/src/main/java/client/command/commands/gm3/ReloadMapCommand.java b/src/main/java/client/command/commands/gm3/ReloadMapCommand.java index 8454c9548a..ed1910c45a 100644 --- a/src/main/java/client/command/commands/gm3/ReloadMapCommand.java +++ b/src/main/java/client/command/commands/gm3/ReloadMapCommand.java @@ -23,16 +23,16 @@ */ package client.command.commands.gm3; -import client.command.Command; -import client.MapleClient; import client.MapleCharacter; +import client.MapleClient; +import client.command.Command; import server.maps.MapleMap; import java.util.Collection; public class ReloadMapCommand extends Command { { - setDescription(""); + setDescription("Reload the map."); } @Override diff --git a/src/main/java/client/command/commands/gm3/ReloadPortalsCommand.java b/src/main/java/client/command/commands/gm3/ReloadPortalsCommand.java index 456f120bd0..42722196a6 100644 --- a/src/main/java/client/command/commands/gm3/ReloadPortalsCommand.java +++ b/src/main/java/client/command/commands/gm3/ReloadPortalsCommand.java @@ -23,14 +23,14 @@ */ package client.command.commands.gm3; -import client.command.Command; -import client.MapleClient; import client.MapleCharacter; +import client.MapleClient; +import client.command.Command; import scripting.portal.PortalScriptManager; public class ReloadPortalsCommand extends Command { { - setDescription(""); + setDescription("Reload all portal scripts."); } @Override diff --git a/src/main/java/client/command/commands/gm3/ReloadShopsCommand.java b/src/main/java/client/command/commands/gm3/ReloadShopsCommand.java index a7e7cd2613..6bc761a7a5 100644 --- a/src/main/java/client/command/commands/gm3/ReloadShopsCommand.java +++ b/src/main/java/client/command/commands/gm3/ReloadShopsCommand.java @@ -23,14 +23,14 @@ */ package client.command.commands.gm3; -import client.command.Command; import client.MapleClient; +import client.command.Command; import server.MapleShopFactory; public class ReloadShopsCommand extends Command { { - setDescription(""); + setDescription("Reload popup shops and NPC shops."); } @Override diff --git a/src/main/java/client/command/commands/gm3/RipCommand.java b/src/main/java/client/command/commands/gm3/RipCommand.java index fe9ed98480..db8d7919e4 100644 --- a/src/main/java/client/command/commands/gm3/RipCommand.java +++ b/src/main/java/client/command/commands/gm3/RipCommand.java @@ -23,15 +23,15 @@ */ package client.command.commands.gm3; -import client.command.Command; -import client.MapleClient; import client.MapleCharacter; +import client.MapleClient; +import client.command.Command; import net.server.Server; import tools.MaplePacketCreator; public class RipCommand extends Command { { - setDescription(""); + setDescription("Send a RIP notice."); } @Override diff --git a/src/main/java/client/command/commands/gm3/SeedCommand.java b/src/main/java/client/command/commands/gm3/SeedCommand.java index 8240c29291..463f9bb9d4 100644 --- a/src/main/java/client/command/commands/gm3/SeedCommand.java +++ b/src/main/java/client/command/commands/gm3/SeedCommand.java @@ -23,16 +23,16 @@ */ package client.command.commands.gm3; -import client.command.Command; -import client.MapleClient; import client.MapleCharacter; +import client.MapleClient; +import client.command.Command; import client.inventory.Item; import java.awt.*; public class SeedCommand extends Command { { - setDescription(""); + setDescription("Drop all seeds inside Henesys PQ."); } @Override diff --git a/src/main/java/client/command/commands/gm3/SpawnCommand.java b/src/main/java/client/command/commands/gm3/SpawnCommand.java index 0b30f0c48b..f9ec285b69 100644 --- a/src/main/java/client/command/commands/gm3/SpawnCommand.java +++ b/src/main/java/client/command/commands/gm3/SpawnCommand.java @@ -23,15 +23,15 @@ */ package client.command.commands.gm3; -import client.command.Command; -import client.MapleClient; import client.MapleCharacter; +import client.MapleClient; +import client.command.Command; import server.life.MapleLifeFactory; import server.life.MapleMonster; public class SpawnCommand extends Command { { - setDescription(""); + setDescription("Spawn mob(s) on your location."); } @Override diff --git a/src/main/java/client/command/commands/gm3/StartEventCommand.java b/src/main/java/client/command/commands/gm3/StartEventCommand.java index 3199127b26..78d8139c20 100644 --- a/src/main/java/client/command/commands/gm3/StartEventCommand.java +++ b/src/main/java/client/command/commands/gm3/StartEventCommand.java @@ -23,16 +23,16 @@ */ package client.command.commands.gm3; -import client.command.Command; -import client.MapleClient; import client.MapleCharacter; +import client.MapleClient; +import client.command.Command; import net.server.Server; import server.events.gm.MapleEvent; import tools.MaplePacketCreator; public class StartEventCommand extends Command { { - setDescription(""); + setDescription("Start an event on current map."); } @Override diff --git a/src/main/java/client/command/commands/gm3/StartMapEventCommand.java b/src/main/java/client/command/commands/gm3/StartMapEventCommand.java index 1f2ad52a9f..202df0ab36 100644 --- a/src/main/java/client/command/commands/gm3/StartMapEventCommand.java +++ b/src/main/java/client/command/commands/gm3/StartMapEventCommand.java @@ -28,7 +28,7 @@ import client.command.Command; public class StartMapEventCommand extends Command { { - setDescription(""); + setDescription("Start a \"classic\" event on current map."); } @Override diff --git a/src/main/java/client/command/commands/gm3/StopMapEventCommand.java b/src/main/java/client/command/commands/gm3/StopMapEventCommand.java index 58db5e6009..2046857b29 100644 --- a/src/main/java/client/command/commands/gm3/StopMapEventCommand.java +++ b/src/main/java/client/command/commands/gm3/StopMapEventCommand.java @@ -28,7 +28,7 @@ import client.command.Command; public class StopMapEventCommand extends Command { { - setDescription(""); + setDescription("Stop ongoing \"classic\" event."); } @Override diff --git a/src/main/java/client/command/commands/gm3/TimerAllCommand.java b/src/main/java/client/command/commands/gm3/TimerAllCommand.java index 549e055936..40c1d47241 100644 --- a/src/main/java/client/command/commands/gm3/TimerAllCommand.java +++ b/src/main/java/client/command/commands/gm3/TimerAllCommand.java @@ -30,7 +30,7 @@ import tools.MaplePacketCreator; public class TimerAllCommand extends Command { { - setDescription(""); + setDescription("Set a server wide timer."); } @Override diff --git a/src/main/java/client/command/commands/gm3/TimerCommand.java b/src/main/java/client/command/commands/gm3/TimerCommand.java index a9e430fee4..dfb12c6df5 100644 --- a/src/main/java/client/command/commands/gm3/TimerCommand.java +++ b/src/main/java/client/command/commands/gm3/TimerCommand.java @@ -30,7 +30,7 @@ import tools.MaplePacketCreator; public class TimerCommand extends Command { { - setDescription(""); + setDescription("Set timer on a player in current map."); } @Override diff --git a/src/main/java/client/command/commands/gm3/TimerMapCommand.java b/src/main/java/client/command/commands/gm3/TimerMapCommand.java index 2650a85c08..2096e8f2c3 100644 --- a/src/main/java/client/command/commands/gm3/TimerMapCommand.java +++ b/src/main/java/client/command/commands/gm3/TimerMapCommand.java @@ -30,7 +30,7 @@ import tools.MaplePacketCreator; public class TimerMapCommand extends Command { { - setDescription(""); + setDescription("Set timer on all players in current map."); } @Override diff --git a/src/main/java/client/command/commands/gm3/ToggleCouponCommand.java b/src/main/java/client/command/commands/gm3/ToggleCouponCommand.java index 6b15618d5b..e5bba02906 100644 --- a/src/main/java/client/command/commands/gm3/ToggleCouponCommand.java +++ b/src/main/java/client/command/commands/gm3/ToggleCouponCommand.java @@ -23,14 +23,14 @@ */ package client.command.commands.gm3; -import client.command.Command; -import client.MapleClient; import client.MapleCharacter; +import client.MapleClient; +import client.command.Command; import net.server.Server; public class ToggleCouponCommand extends Command { { - setDescription(""); + setDescription("Toggle enable/disable a coupon."); } @Override diff --git a/src/main/java/client/command/commands/gm3/UnBanCommand.java b/src/main/java/client/command/commands/gm3/UnBanCommand.java index 878e4fa2fd..1a67ecc59b 100644 --- a/src/main/java/client/command/commands/gm3/UnBanCommand.java +++ b/src/main/java/client/command/commands/gm3/UnBanCommand.java @@ -33,7 +33,7 @@ import java.sql.PreparedStatement; public class UnBanCommand extends Command { { - setDescription(""); + setDescription("Unban a player."); } @Override