int i = 0;
   char* tabulation = "###";
-  char* offline = "N";
   // First, dump all single commands, which are not a container for 
   // other commands
   printf("command|offline|description\n");
 
   while (cmds[i].Name)
   {
+    char* offline = "N";
     if(cmds[i].Help[0] == '{' && ++i) continue;
 
     if ( cmds[i].Offline) offline = "Y";