summaryrefslogtreecommitdiff
path: root/src/coremods
diff options
context:
space:
mode:
Diffstat (limited to 'src/coremods')
-rw-r--r--src/coremods/core_channel/cmd_invite.cpp2
-rw-r--r--src/coremods/core_channel/cmd_join.cpp2
-rw-r--r--src/coremods/core_channel/cmd_kick.cpp4
-rw-r--r--src/coremods/core_channel/cmd_names.cpp2
-rw-r--r--src/coremods/core_channel/cmd_topic.cpp2
-rw-r--r--src/coremods/core_ison.cpp2
-rw-r--r--src/coremods/core_message.cpp6
-rw-r--r--src/coremods/core_oper/cmd_die.cpp2
-rw-r--r--src/coremods/core_oper/cmd_kill.cpp2
-rw-r--r--src/coremods/core_oper/cmd_restart.cpp2
-rw-r--r--src/coremods/core_stats.cpp2
-rw-r--r--src/coremods/core_stub.cpp4
-rw-r--r--src/coremods/core_user/cmd_away.cpp2
-rw-r--r--src/coremods/core_user/cmd_mode.cpp2
-rw-r--r--src/coremods/core_user/cmd_part.cpp2
-rw-r--r--src/coremods/core_user/cmd_quit.cpp2
-rw-r--r--src/coremods/core_user/cmd_user.cpp2
-rw-r--r--src/coremods/core_userhost.cpp2
-rw-r--r--src/coremods/core_wallops.cpp2
-rw-r--r--src/coremods/core_who.cpp2
-rw-r--r--src/coremods/core_whois.cpp2
-rw-r--r--src/coremods/core_whowas.cpp2
-rw-r--r--src/coremods/core_xline/cmd_eline.cpp2
-rw-r--r--src/coremods/core_xline/cmd_gline.cpp2
-rw-r--r--src/coremods/core_xline/cmd_kline.cpp2
-rw-r--r--src/coremods/core_xline/cmd_qline.cpp2
26 files changed, 30 insertions, 30 deletions
diff --git a/src/coremods/core_channel/cmd_invite.cpp b/src/coremods/core_channel/cmd_invite.cpp
index c26318337..732894aa5 100644
--- a/src/coremods/core_channel/cmd_invite.cpp
+++ b/src/coremods/core_channel/cmd_invite.cpp
@@ -29,7 +29,7 @@ CommandInvite::CommandInvite(Module* parent, Invite::APIImpl& invapiimpl)
, invapi(invapiimpl)
{
Penalty = 4;
- syntax = "[<nick> <channel>]";
+ syntax = "[<nick> <channel> [<time>]]";
}
/** Handle /INVITE
diff --git a/src/coremods/core_channel/cmd_join.cpp b/src/coremods/core_channel/cmd_join.cpp
index 2caed9dc6..0e783d2b3 100644
--- a/src/coremods/core_channel/cmd_join.cpp
+++ b/src/coremods/core_channel/cmd_join.cpp
@@ -24,7 +24,7 @@
CommandJoin::CommandJoin(Module* parent)
: SplitCommand(parent, "JOIN", 1, 2)
{
- syntax = "<channel>{,<channel>} {<key>{,<key>}}";
+ syntax = "<channel>[,<channel>]+ [<key>[,<key>]+]";
Penalty = 2;
}
diff --git a/src/coremods/core_channel/cmd_kick.cpp b/src/coremods/core_channel/cmd_kick.cpp
index 755c6613b..77ac36a66 100644
--- a/src/coremods/core_channel/cmd_kick.cpp
+++ b/src/coremods/core_channel/cmd_kick.cpp
@@ -24,7 +24,7 @@
CommandKick::CommandKick(Module* parent)
: Command(parent, "KICK", 2, 3)
{
- syntax = "<channel> <nick>{,<nick>} [<reason>]";
+ syntax = "<channel> <nick>[,<nick>]+ [:<reason>]";
}
/** Handle /KICK
@@ -65,7 +65,7 @@ CmdResult CommandKick::Handle(User* user, const Params& parameters)
if (u->server->IsULine())
{
- user->WriteNumeric(ERR_CHANOPRIVSNEEDED, c->name, "You may not kick a u-lined client");
+ user->WriteNumeric(ERR_CHANOPRIVSNEEDED, c->name, "You may not kick a U-lined client");
return CMD_FAILURE;
}
}
diff --git a/src/coremods/core_channel/cmd_names.cpp b/src/coremods/core_channel/cmd_names.cpp
index 28273c903..a179cf9dc 100644
--- a/src/coremods/core_channel/cmd_names.cpp
+++ b/src/coremods/core_channel/cmd_names.cpp
@@ -27,7 +27,7 @@ CommandNames::CommandNames(Module* parent)
, privatemode(parent, "private")
, invisiblemode(parent, "invisible")
{
- syntax = "{<channel>{,<channel>}}";
+ syntax = "<channel>[,<channel>]+";
}
/** Handle /NAMES
diff --git a/src/coremods/core_channel/cmd_topic.cpp b/src/coremods/core_channel/cmd_topic.cpp
index 0417f1a0c..f0af2a0ad 100644
--- a/src/coremods/core_channel/cmd_topic.cpp
+++ b/src/coremods/core_channel/cmd_topic.cpp
@@ -29,7 +29,7 @@ CommandTopic::CommandTopic(Module* parent)
, secretmode(parent, "secret")
, topiclockmode(parent, "topiclock")
{
- syntax = "<channel> [<topic>]";
+ syntax = "<channel> [:<topic>]";
Penalty = 2;
}
diff --git a/src/coremods/core_ison.cpp b/src/coremods/core_ison.cpp
index 3f6b1ac74..ec097f1c6 100644
--- a/src/coremods/core_ison.cpp
+++ b/src/coremods/core_ison.cpp
@@ -30,7 +30,7 @@ class CommandIson : public SplitCommand
CommandIson(Module* parent)
: SplitCommand(parent, "ISON", 1)
{
- syntax = "<nick> {nick}";
+ syntax = "<nick> [<nick>]+";
}
/** Handle command.
* @param parameters The parameters to the command
diff --git a/src/coremods/core_message.cpp b/src/coremods/core_message.cpp
index 8a7499f1d..65eaa1bb7 100644
--- a/src/coremods/core_message.cpp
+++ b/src/coremods/core_message.cpp
@@ -303,7 +303,7 @@ class CommandMessage : public Command
, moderatedmode(parent, "moderated")
, noextmsgmode(parent, "noextmsg")
{
- syntax = "<target>{,<target>} <message>";
+ syntax = "<target>[,<target>]+ :<message>";
}
/** Handle command.
@@ -357,7 +357,7 @@ class CommandSQuery : public SplitCommand
CommandSQuery(Module* Creator)
: SplitCommand(Creator, "SQUERY", 2, 2)
{
- syntax = "<service> <message>";
+ syntax = "<service> :<message>";
}
CmdResult HandleLocal(LocalUser* user, const Params& parameters) CXX11_OVERRIDE
@@ -398,7 +398,7 @@ class CommandSQuery : public SplitCommand
if (!FirePreEvents(user, msgtarget, msgdetails))
return CMD_FAILURE;
- // The SQUERY command targets a service on a u-lined server. This can never
+ // The SQUERY command targets a service on a U-lined server. This can never
// be on the server local to the source so we don't need to do any routing
// logic and can forward it as a PRIVMSG.
diff --git a/src/coremods/core_oper/cmd_die.cpp b/src/coremods/core_oper/cmd_die.cpp
index 724db2f32..73c590711 100644
--- a/src/coremods/core_oper/cmd_die.cpp
+++ b/src/coremods/core_oper/cmd_die.cpp
@@ -27,7 +27,7 @@ CommandDie::CommandDie(Module* parent, std::string& hashref)
, hash(hashref)
{
flags_needed = 'o';
- syntax = "<server>";
+ syntax = "<servername>";
}
void DieRestart::SendError(const std::string& message)
diff --git a/src/coremods/core_oper/cmd_kill.cpp b/src/coremods/core_oper/cmd_kill.cpp
index bdf08f194..01179d61d 100644
--- a/src/coremods/core_oper/cmd_kill.cpp
+++ b/src/coremods/core_oper/cmd_kill.cpp
@@ -27,7 +27,7 @@ CommandKill::CommandKill(Module* parent)
, protoev(parent, name)
{
flags_needed = 'o';
- syntax = "<nickname> <reason>";
+ syntax = "<nick>[,<nick>]+ :<reason>";
TRANSLATE2(TR_CUSTOM, TR_CUSTOM);
}
diff --git a/src/coremods/core_oper/cmd_restart.cpp b/src/coremods/core_oper/cmd_restart.cpp
index afadb911a..a96993e7e 100644
--- a/src/coremods/core_oper/cmd_restart.cpp
+++ b/src/coremods/core_oper/cmd_restart.cpp
@@ -26,7 +26,7 @@ CommandRestart::CommandRestart(Module* parent, std::string& hashref)
, hash(hashref)
{
flags_needed = 'o';
- syntax = "<server>";
+ syntax = "<servername>";
}
CmdResult CommandRestart::Handle(User* user, const Params& parameters)
diff --git a/src/coremods/core_stats.cpp b/src/coremods/core_stats.cpp
index 6576aa514..918d59ab7 100644
--- a/src/coremods/core_stats.cpp
+++ b/src/coremods/core_stats.cpp
@@ -44,7 +44,7 @@ class CommandStats : public Command
, statsevprov(Creator, "event/stats")
{
allow_empty_last_param = false;
- syntax = "<stats-symbol> [<servername>]";
+ syntax = "<symbol> [<servername>]";
}
/** Handle command.
diff --git a/src/coremods/core_stub.cpp b/src/coremods/core_stub.cpp
index e4f18cb22..06e033f15 100644
--- a/src/coremods/core_stub.cpp
+++ b/src/coremods/core_stub.cpp
@@ -40,7 +40,7 @@ class CommandConnect : public Command
: Command(parent, "CONNECT", 1)
{
flags_needed = 'o';
- syntax = "<servername>";
+ syntax = "<servermask>";
}
/** Handle command.
@@ -126,7 +126,7 @@ class CommandSquit : public Command
: Command(parent, "SQUIT", 1, 2)
{
flags_needed = 'o';
- syntax = "<servername>";
+ syntax = "<servermask>";
}
/** Handle command.
diff --git a/src/coremods/core_user/cmd_away.cpp b/src/coremods/core_user/cmd_away.cpp
index 50a586392..834e8711d 100644
--- a/src/coremods/core_user/cmd_away.cpp
+++ b/src/coremods/core_user/cmd_away.cpp
@@ -33,7 +33,7 @@ CommandAway::CommandAway(Module* parent)
, awayevprov(parent)
{
allow_empty_last_param = false;
- syntax = "[<message>]";
+ syntax = "[:<message>]";
}
/** Handle /AWAY
diff --git a/src/coremods/core_user/cmd_mode.cpp b/src/coremods/core_user/cmd_mode.cpp
index ffeb9a2e3..f58a41aa4 100644
--- a/src/coremods/core_user/cmd_mode.cpp
+++ b/src/coremods/core_user/cmd_mode.cpp
@@ -26,7 +26,7 @@ CommandMode::CommandMode(Module* parent)
: Command(parent, "MODE", 1)
, seq(0)
{
- syntax = "<target> <modes> {<mode-parameters>}";
+ syntax = "<target> [[(+|-)]<modes> [<mode-parameters>]]";
memset(&sent, 0, sizeof(sent));
}
diff --git a/src/coremods/core_user/cmd_part.cpp b/src/coremods/core_user/cmd_part.cpp
index 2bc431ab3..9400eed93 100644
--- a/src/coremods/core_user/cmd_part.cpp
+++ b/src/coremods/core_user/cmd_part.cpp
@@ -25,7 +25,7 @@ CommandPart::CommandPart(Module* parent)
: Command(parent, "PART", 1, 2)
{
Penalty = 5;
- syntax = "<channel>{,<channel>} [<reason>]";
+ syntax = "<channel>[,<channel>]+ [:<reason>]";
}
CmdResult CommandPart::Handle(User* user, const Params& parameters)
diff --git a/src/coremods/core_user/cmd_quit.cpp b/src/coremods/core_user/cmd_quit.cpp
index d919a5761..74781a98e 100644
--- a/src/coremods/core_user/cmd_quit.cpp
+++ b/src/coremods/core_user/cmd_quit.cpp
@@ -26,7 +26,7 @@ CommandQuit::CommandQuit(Module* parent)
, operquit("operquit", ExtensionItem::EXT_USER, parent)
{
works_before_reg = true;
- syntax = "[<message>]";
+ syntax = "[:<message>]";
}
CmdResult CommandQuit::Handle(User* user, const Params& parameters)
diff --git a/src/coremods/core_user/cmd_user.cpp b/src/coremods/core_user/cmd_user.cpp
index 1a8b091f3..89b173909 100644
--- a/src/coremods/core_user/cmd_user.cpp
+++ b/src/coremods/core_user/cmd_user.cpp
@@ -33,7 +33,7 @@ CommandUser::CommandUser(Module* parent)
allow_empty_last_param = false;
works_before_reg = true;
Penalty = 0;
- syntax = "<username> <localhost> <remotehost> <realname>";
+ syntax = "<username> <unused> <unused> :<realname>";
}
CmdResult CommandUser::HandleLocal(LocalUser* user, const Params& parameters)
diff --git a/src/coremods/core_userhost.cpp b/src/coremods/core_userhost.cpp
index 542c1831d..e21e7d95b 100644
--- a/src/coremods/core_userhost.cpp
+++ b/src/coremods/core_userhost.cpp
@@ -33,7 +33,7 @@ class CommandUserhost : public Command
: Command(parent,"USERHOST", 1)
, hideopermode(parent, "hideoper")
{
- syntax = "<nick> [<nick> ...]";
+ syntax = "<nick> [<nick>]+";
}
/** Handle command.
* @param parameters The parameters to the command
diff --git a/src/coremods/core_wallops.cpp b/src/coremods/core_wallops.cpp
index 6b055f874..09fafd244 100644
--- a/src/coremods/core_wallops.cpp
+++ b/src/coremods/core_wallops.cpp
@@ -36,7 +36,7 @@ class CommandWallops : public Command
, protoevprov(parent, name)
{
flags_needed = 'o';
- syntax = "<any-text>";
+ syntax = ":<message>";
}
/** Handle command.
diff --git a/src/coremods/core_who.cpp b/src/coremods/core_who.cpp
index b5f9163e1..bf00b741f 100644
--- a/src/coremods/core_who.cpp
+++ b/src/coremods/core_who.cpp
@@ -143,7 +143,7 @@ class CommandWho : public SplitCommand
, whoevprov(parent, "event/who")
{
allow_empty_last_param = false;
- syntax = "<server>|<nickname>|<channel>|<realname>|<host>|0 [[Aafhilmnoprstux][%acdfhilnorstu] <server>|<nickname>|<channel>|<realname>|<host>|0]";
+ syntax = "<server>|<nick>|<channel>|<realname>|<host>|0 [[Aafhilmnoprstux][%acdfhilnorstu] <server>|<nick>|<channel>|<realname>|<host>|0]";
}
/** Sends a WHO reply to a user. */
diff --git a/src/coremods/core_whois.cpp b/src/coremods/core_whois.cpp
index 880e5a533..199c9e2ac 100644
--- a/src/coremods/core_whois.cpp
+++ b/src/coremods/core_whois.cpp
@@ -107,7 +107,7 @@ class CommandWhois : public SplitCommand
, lineevprov(parent, "event/whoisline")
{
Penalty = 2;
- syntax = "<nick>{,<nick>}";
+ syntax = "[<servername>] <nick>[,<nick>]+";
}
/** Handle command.
diff --git a/src/coremods/core_whowas.cpp b/src/coremods/core_whowas.cpp
index 65c83e08b..80c87357c 100644
--- a/src/coremods/core_whowas.cpp
+++ b/src/coremods/core_whowas.cpp
@@ -37,7 +37,7 @@ enum
CommandWhowas::CommandWhowas( Module* parent)
: Command(parent, "WHOWAS", 1)
{
- syntax = "<nick>{,<nick>}";
+ syntax = "<nick>";
Penalty = 2;
}
diff --git a/src/coremods/core_xline/cmd_eline.cpp b/src/coremods/core_xline/cmd_eline.cpp
index 4700e9fd2..99794be3e 100644
--- a/src/coremods/core_xline/cmd_eline.cpp
+++ b/src/coremods/core_xline/cmd_eline.cpp
@@ -26,7 +26,7 @@ CommandEline::CommandEline(Module* parent)
: Command(parent, "ELINE", 1, 3)
{
flags_needed = 'o';
- syntax = "<ident@host> [<duration> :<reason>]";
+ syntax = "<user@host> [<duration> :<reason>]";
}
/** Handle /ELINE
diff --git a/src/coremods/core_xline/cmd_gline.cpp b/src/coremods/core_xline/cmd_gline.cpp
index 413da97b1..ae1ea5d6e 100644
--- a/src/coremods/core_xline/cmd_gline.cpp
+++ b/src/coremods/core_xline/cmd_gline.cpp
@@ -26,7 +26,7 @@ CommandGline::CommandGline(Module* parent)
: Command(parent, "GLINE", 1, 3)
{
flags_needed = 'o';
- syntax = "<ident@host> [<duration> :<reason>]";
+ syntax = "<user@host> [<duration> :<reason>]";
}
/** Handle /GLINE
diff --git a/src/coremods/core_xline/cmd_kline.cpp b/src/coremods/core_xline/cmd_kline.cpp
index 6499b6b00..ad7511d56 100644
--- a/src/coremods/core_xline/cmd_kline.cpp
+++ b/src/coremods/core_xline/cmd_kline.cpp
@@ -26,7 +26,7 @@ CommandKline::CommandKline(Module* parent)
: Command(parent, "KLINE", 1, 3)
{
flags_needed = 'o';
- syntax = "<ident@host> [<duration> :<reason>]";
+ syntax = "<user@host> [<duration> :<reason>]";
}
/** Handle /KLINE
diff --git a/src/coremods/core_xline/cmd_qline.cpp b/src/coremods/core_xline/cmd_qline.cpp
index 0b2ef99bb..51f5bec16 100644
--- a/src/coremods/core_xline/cmd_qline.cpp
+++ b/src/coremods/core_xline/cmd_qline.cpp
@@ -27,7 +27,7 @@ CommandQline::CommandQline(Module* parent)
: Command(parent, "QLINE", 1, 3)
{
flags_needed = 'o';
- syntax = "<nick> [<duration> :<reason>]";
+ syntax = "<nickmask> [<duration> :<reason>]";
}
CmdResult CommandQline::Handle(User* user, const Params& parameters)