mirror of
https://github.com/Kelsidavis/WoWee.git
synced 2026-03-22 23:30:14 +00:00
feat: expand slash command autocomplete with 30+ missing commands
Add /reload, /reloadui, /rl, /ready, /notready, /readycheck, /cancellogout, /clearmainassist, /clearmaintank, /mainassist, /maintank, /cloak, /gdemote, /gkick, /gleader, /gmotd, /gpromote, /gquit, /groster, /leaveparty, /removefriend, /score, /script, /targetenemy, /targetfriend, /targetlast, /ticket, and more to the tab-completion list. Alphabetically sorted.
This commit is contained in:
parent
00201c1232
commit
bf62061a31
1 changed files with 16 additions and 8 deletions
|
|
@ -2617,24 +2617,32 @@ void GameScreen::renderChatWindow(game::GameHandler& gameHandler) {
|
||||||
|
|
||||||
static const std::vector<std::string> kCmds = {
|
static const std::vector<std::string> kCmds = {
|
||||||
"/afk", "/assist", "/away",
|
"/afk", "/assist", "/away",
|
||||||
"/cancelaura", "/cancelform", "/cancelshapeshift",
|
"/cancelaura", "/cancelform", "/cancellogout", "/cancelshapeshift",
|
||||||
"/cast", "/castsequence", "/chathelp", "/clear", "/clearfocus", "/cleartarget",
|
"/cast", "/castsequence", "/chathelp", "/clear", "/clearfocus",
|
||||||
|
"/clearmainassist", "/clearmaintank", "/cleartarget", "/cloak",
|
||||||
"/combatlog", "/dance", "/dismount", "/dnd", "/do", "/duel",
|
"/combatlog", "/dance", "/dismount", "/dnd", "/do", "/duel",
|
||||||
"/e", "/emote", "/equip", "/equipset",
|
"/e", "/emote", "/equip", "/equipset",
|
||||||
"/focus", "/follow", "/forfeit", "/friend",
|
"/focus", "/follow", "/forfeit", "/friend",
|
||||||
"/g", "/ginvite", "/gmticket", "/grouploot", "/guild", "/guildinfo",
|
"/g", "/gdemote", "/ginvite", "/gkick", "/gleader", "/gmotd",
|
||||||
|
"/gmticket", "/gpromote", "/gquit", "/grouploot", "/groster",
|
||||||
|
"/guild", "/guildinfo",
|
||||||
"/helm", "/help",
|
"/helm", "/help",
|
||||||
"/i", "/ignore", "/inspect", "/instance", "/invite",
|
"/i", "/ignore", "/inspect", "/instance", "/invite",
|
||||||
"/j", "/join", "/kick", "/kneel",
|
"/j", "/join", "/kick", "/kneel",
|
||||||
"/l", "/leave", "/loc", "/local", "/logout",
|
"/l", "/leave", "/leaveparty", "/loc", "/local", "/logout",
|
||||||
"/macrohelp", "/mark", "/me",
|
"/macrohelp", "/mainassist", "/maintank", "/mark", "/me",
|
||||||
|
"/notready",
|
||||||
"/p", "/party", "/petaggressive", "/petattack", "/petdefensive",
|
"/p", "/party", "/petaggressive", "/petattack", "/petdefensive",
|
||||||
"/petdismiss", "/petfollow", "/pethalt", "/petpassive", "/petstay",
|
"/petdismiss", "/petfollow", "/pethalt", "/petpassive", "/petstay",
|
||||||
"/played", "/pvp",
|
"/played", "/pvp",
|
||||||
"/r", "/raid", "/raidinfo", "/raidwarning", "/random", "/reply", "/roll", "/run",
|
"/r", "/raid", "/raidinfo", "/raidwarning", "/random", "/ready",
|
||||||
"/s", "/say", "/screenshot", "/setloot", "/shout", "/sit", "/stand",
|
"/readycheck", "/reload", "/reloadui", "/removefriend",
|
||||||
|
"/reply", "/rl", "/roll", "/run",
|
||||||
|
"/s", "/say", "/score", "/screenshot", "/script", "/setloot",
|
||||||
|
"/shout", "/sit", "/stand",
|
||||||
"/startattack", "/stopattack", "/stopcasting", "/stopfollow", "/stopmacro",
|
"/startattack", "/stopattack", "/stopcasting", "/stopfollow", "/stopmacro",
|
||||||
"/t", "/target", "/threat", "/time", "/trade",
|
"/t", "/target", "/targetenemy", "/targetfriend", "/targetlast",
|
||||||
|
"/threat", "/ticket", "/time", "/trade",
|
||||||
"/unignore", "/uninvite", "/unstuck", "/use",
|
"/unignore", "/uninvite", "/unstuck", "/use",
|
||||||
"/w", "/whisper", "/who", "/wts", "/wtb",
|
"/w", "/whisper", "/who", "/wts", "/wtb",
|
||||||
"/y", "/yell", "/zone"
|
"/y", "/yell", "/zone"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue