mirror of
https://github.com/EQEmu/Server.git
synced 2026-05-17 03:08:26 +00:00
[Saylinks] Convert all GM Command Saylinks to Silent Saylinks. (#2373)
* [Saylinks] Convert all GM Command Saylinks to Silent Saylinks. - This cleans up all non-silent GM Command Saylinks that we had before due to the way they worked before. All saylinks like this should be silent now. - Add source short hand capability for say links with same link as text. * Defaults to r anyway. * Spacing.
This commit is contained in:
+17
-17
@@ -18,7 +18,7 @@ void command_task(Client *c, const Seperator *sep)
|
||||
Chat::White,
|
||||
fmt::format(
|
||||
"--- [{}] List active tasks for a client",
|
||||
Saylink::Create("#task show", false, "show")
|
||||
Saylink::Silent("#task show", "show")
|
||||
).c_str()
|
||||
);
|
||||
c->Message(Chat::White, "--- update <task_id> <activity_id> [count] | Updates task");
|
||||
@@ -28,42 +28,42 @@ void command_task(Client *c, const Seperator *sep)
|
||||
Chat::White,
|
||||
fmt::format(
|
||||
"--- [{}] Reload all Task information from the database",
|
||||
Saylink::Create("#task reloadall", false, "reloadall")
|
||||
Saylink::Silent("#task reloadall", "reloadall")
|
||||
).c_str()
|
||||
);
|
||||
c->Message(
|
||||
Chat::White,
|
||||
fmt::format(
|
||||
"--- [{}] <task_id> Reload Task and Activity information for a single task",
|
||||
Saylink::Create("#task reload task", false, "reload task")
|
||||
Saylink::Silent("#task reload task", "reload task")
|
||||
).c_str()
|
||||
);
|
||||
c->Message(
|
||||
Chat::White,
|
||||
fmt::format(
|
||||
"--- [{}] Reload goal/reward list information",
|
||||
Saylink::Create("#task reload lists", false, "reload lists")
|
||||
Saylink::Silent("#task reload lists", "reload lists")
|
||||
).c_str()
|
||||
);
|
||||
c->Message(
|
||||
Chat::White,
|
||||
fmt::format(
|
||||
"--- [{}] Reload proximity information",
|
||||
Saylink::Create("#task reload prox", false, "reload prox")
|
||||
Saylink::Silent("#task reload prox", "reload prox")
|
||||
).c_str()
|
||||
);
|
||||
c->Message(
|
||||
Chat::White,
|
||||
fmt::format(
|
||||
"--- [{}] Reload task set information",
|
||||
Saylink::Create("#task reload sets", false, "reload sets")
|
||||
Saylink::Silent("#task reload sets", "reload sets")
|
||||
).c_str()
|
||||
);
|
||||
c->Message(
|
||||
Chat::White,
|
||||
fmt::format(
|
||||
"--- [{}] Purges targeted characters task timers",
|
||||
Saylink::Create("#task purgetimers", false, "purgetimers")
|
||||
Saylink::Silent("#task purgetimers", "purgetimers")
|
||||
).c_str()
|
||||
);
|
||||
|
||||
@@ -74,7 +74,7 @@ void command_task(Client *c, const Seperator *sep)
|
||||
Chat::White,
|
||||
fmt::format(
|
||||
"--- [{}] Purges all active Shared Tasks in memory and database ",
|
||||
Saylink::Create("#task sharedpurge", false, "sharedpurge")
|
||||
Saylink::Silent("#task sharedpurge", "sharedpurge")
|
||||
).c_str()
|
||||
);
|
||||
return;
|
||||
@@ -112,7 +112,7 @@ void command_task(Client *c, const Seperator *sep)
|
||||
Chat::White,
|
||||
fmt::format(
|
||||
"--- [{}] List active tasks for a client",
|
||||
Saylink::Create("#task show", false, "show")
|
||||
Saylink::Silent("#task show", "show")
|
||||
).c_str()
|
||||
);
|
||||
c->Message(Chat::White, "--- update <task_id> <activity_id> [count] | Updates task");
|
||||
@@ -122,42 +122,42 @@ void command_task(Client *c, const Seperator *sep)
|
||||
Chat::White,
|
||||
fmt::format(
|
||||
"--- [{}] Reload all Task information from the database",
|
||||
Saylink::Create("#task reloadall", false, "reloadall")
|
||||
Saylink::Silent("#task reloadall", "reloadall")
|
||||
).c_str()
|
||||
);
|
||||
c->Message(
|
||||
Chat::White,
|
||||
fmt::format(
|
||||
"--- [{}] <task_id> Reload Task and Activity information for a single task",
|
||||
Saylink::Create("#task reload task", false, "reload task")
|
||||
Saylink::Silent("#task reload task", "reload task")
|
||||
).c_str()
|
||||
);
|
||||
c->Message(
|
||||
Chat::White,
|
||||
fmt::format(
|
||||
"--- [{}] Reload goal/reward list information",
|
||||
Saylink::Create("#task reload lists", false, "reload lists")
|
||||
Saylink::Silent("#task reload lists", "reload lists")
|
||||
).c_str()
|
||||
);
|
||||
c->Message(
|
||||
Chat::White,
|
||||
fmt::format(
|
||||
"--- [{}] Reload proximity information",
|
||||
Saylink::Create("#task reload prox", false, "reload prox")
|
||||
Saylink::Silent("#task reload prox", "reload prox")
|
||||
).c_str()
|
||||
);
|
||||
c->Message(
|
||||
Chat::White,
|
||||
fmt::format(
|
||||
"--- [{}] Reload task set information",
|
||||
Saylink::Create("#task reload sets", false, "reload sets")
|
||||
Saylink::Silent("#task reload sets", "reload sets")
|
||||
).c_str()
|
||||
);
|
||||
c->Message(
|
||||
Chat::White,
|
||||
fmt::format(
|
||||
"--- [{}] Purges targeted characters task timers",
|
||||
Saylink::Create("#task purgetimers", false, "purgetimers")
|
||||
Saylink::Silent("#task purgetimers", "purgetimers")
|
||||
).c_str()
|
||||
);
|
||||
|
||||
@@ -168,7 +168,7 @@ void command_task(Client *c, const Seperator *sep)
|
||||
Chat::White,
|
||||
fmt::format(
|
||||
"--- [{}] Purges all active Shared Tasks in memory and database ",
|
||||
Saylink::Create("#task sharedpurge", false, "sharedpurge")
|
||||
Saylink::Silent("#task sharedpurge", "sharedpurge")
|
||||
).c_str()
|
||||
);
|
||||
return;
|
||||
@@ -260,7 +260,7 @@ void command_task(Client *c, const Seperator *sep)
|
||||
Chat::White,
|
||||
fmt::format(
|
||||
"[WARNING] This will purge all active Shared Tasks [{}]?",
|
||||
Saylink::Create("#task sharedpurge confirm", false, "confirm")
|
||||
Saylink::Silent("#task sharedpurge confirm", "confirm")
|
||||
).c_str()
|
||||
);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user