diff --git a/plugins/command.js b/plugins/command.js
index db96eb6..2d34889 100755
--- a/plugins/command.js
+++ b/plugins/command.js
@@ -4,6 +4,11 @@ const hashcheck=require("../util/hashcheck.js");
 const settings = require("../settings.json");
 const getMessage = require('../util/lang.js');
 let cmds=Object.create(null);
+const sortHelp=function sortHelp(c1, c2){
+    const level1 = cmds[c1.with[1]].level?cmds[c1.with[1]].level:0;
+    const level2 = cmds[c2.with[1]].level?cmds[c2.with[1]].level:0;
+    return level1 - level2
+}
 module.exports={
     load:()=>{
         module.exports.loadCMD();
@@ -38,17 +43,59 @@ module.exports={
                 try{
                     cmds[cmd[0].toLowerCase()].execute(new Command(uuid,name,"nick N/A",text,prefix,b,verify))
                 } catch(e) {
-                    console.log(e); b.chat(getMessage(lang,"command.error"))
+                    console.log(e);
+                    b.tellraw(uuid,{
+                        text:getMessage(lang,"command.error"),
+                        color: "red",
+                        hoverEvent:{
+                            action: "show_text",
+                            value:{
+                                "text": e.stack
+                            }
+                        }
+                    });
                 }
             }
         }
         b.printHelp=(uuid,prefix,lang)=>{
-            let helpCmds=[];
+            let commandList=[];
             for(const i in cmds){
                 if(cmds[i].hidden) continue;
-                helpCmds.push(prefix+i)
+                let cmdColor;
+                switch (cmds[i].level){
+                    case 0:
+                        cmdColor = "green";
+                        break;
+                    case 1:
+                        cmdColor = "red";
+                        break;
+                    case 2:
+                        cmdColor = "dark_red";
+                        break;
+                    case 3:
+                        cmdColor = "dark_gray";
+                        break;
+                    default:
+                        cmdColor = "gray";
+                }
+                commandList.push(
+                    {
+                        translate: "%s%s ",
+                        color: cmdColor,
+                        with: [
+                            prefix,
+                            i
+                        ]
+                    }
+                )
             }
-            b.tellraw(uuid,{text:getMessage(lang,"command.help.cmdList",[helpCmds.join(" ")])});
+            b.tellraw(uuid,{
+                translate: "%s: %s",
+                with: [
+                    getMessage(lang,"command.help.cmdList"),
+                    commandList.sort(sortHelp)
+                ]
+            })
         }
         b.printCmdHelp=(uuid,cmd,lang)=>{
             if(!cmds[cmd]){
@@ -86,7 +133,10 @@ module.exports={
             try {
                 commandName=bpl[i].split(".js")[0];
                 cmds[commandName]=require(`./commands/${bpl[i]}`);
-                console.log("Loaded command "+commandName)
+                if(cmds[commandName].level === undefined){
+                    cmds[commandName].level = 0;
+                }
+                console.log("Loaded command "+commandName);
                 if(cmds[commandName].aliases){
                     for(const j in cmds[commandName].aliases){
                         cmds[cmds[commandName].aliases[j]]={
diff --git a/util/lang/en-US.json b/util/lang/en-US.json
index f3fc87a..d99f79c 100644
--- a/util/lang/en-US.json
+++ b/util/lang/en-US.json
@@ -33,7 +33,7 @@
 	"command.cloop.success.remove": "Removed command loop %s",
 	"command.cloop.success.clear": "Cleared all command loops",
 	"command.cloop.list": "%s: Command: %s Rate: %s",
-	"command.help.cmdList": "Commands: %s",
+	"command.help.cmdList": "Commands",
 	"command.help.commandInfo": "%s%s - %s",
 	"command.help.commandUsage": "Usage - %s%s",
 	"command.help.commandDesc": "Description - %s",
diff --git a/util/lang/he-IL.json b/util/lang/he-IL.json
index 5b251be..2b2dd94 100644
--- a/util/lang/he-IL.json
+++ b/util/lang/he-IL.json
@@ -33,7 +33,7 @@
 	"command.cloop.success.remove": "Wemoved command woop %s",
 	"command.cloop.success.clear": "Cweawed aww command woops",
 	"command.cloop.list": "%s: Command: %s Rate: %s",
-	"command.help.cmdList": "Commands: %s",
+	"command.help.cmdList": "Commands",
 	"command.help.commandInfo": "%s%s - %s",
 	"command.help.commandUsage": "Usage - %s%s",
 	"command.help.commandDesc": "Descwiption - %s",