I want to ask a question., I use /hl after using /list and /help, how can this be solved? For example when case "hl": use /list and /help I do not know what function can be this, please answer it, thank!
Can you restate what happening cause i dont understand what you are asking or what your problem is so i cant help.
...sorry, I may not express what I mean. When I use /hl , I can use/list and /help . What should I do?
do you have any plugins installed? Also are you saying when you do /hl you cant do /list and /help? or it tell you to do /help and /list. Screenshots may help too.
My English is not good... I want to express it.,when i use /hl then When I use /hl, I want to show the results of the /list and /help commands., for example when i use: /hl The result of the input is: There are 0/20 players online: and --- Showing help page 1 of 1 (/help <page>) --- ........
PHP: // handler of /hl// $issuer is the CommandSender of the command$this->getServer()->getCommandMap()->getCommand("help")->execute($issuer, "help", []);$this->getServer()->getCommandMap()->getCommand("list")->execute($issuer, "list", []);
Yes, this is what we are doing here. The first line sends the help message to the issuer. The second line sends the list message to the issuer. Unless you want to implement your own help/list code, this is the best way.