Пример #1
0
 // Token: 0x060064B2 RID: 25778 RVA: 0x001E9EBC File Offset: 0x001E80BC
 public void KHBHACBOGLJ(string PODGBCMDEOF, DebugCommands.DebugCommand CMHOHMCDIAN, string OCCKNFGDAHI = "", string JKLIPKFAACO = "", bool ENHGPBGHEPA = false)
 {
     PODGBCMDEOF = PODGBCMDEOF.ToLower();
     if (this.PAMDBEMNGGC(PODGBCMDEOF))
     {
         return;
     }
     DebugCommands.Command command = new DebugCommands.Command();
     command.name            = PODGBCMDEOF;
     command.method          = CMHOHMCDIAN;
     command.description     = OCCKNFGDAHI;
     command.argsDescription = JKLIPKFAACO;
     command.isCheat         = ENHGPBGHEPA;
     this.commands.Add(command);
 }
Пример #2
0
    private static void PrintHelp(string[] args)
    {
        for (int i = 0; i < DebugCommands.Instance.Commands.Count; i++)
        {
            DebugCommands.Command command = DebugCommands.Instance.Commands[i];

            string helpStr = string.Format("{0}", command.name);

            if (!string.IsNullOrEmpty(command.argsDescription))
            {
                helpStr += string.Format(" {0}", command.argsDescription);
            }

            if (!string.IsNullOrEmpty(command.description))
            {
                helpStr += string.Format(" - {0}", command.description);
            }

            Debug.Log(helpStr);
        }
    }
 // Token: 0x06006564 RID: 25956 RVA: 0x001EAFF4 File Offset: 0x001E91F4
 private static void OAOPONPIOJH(string[] BDGDDFKKGGA)
 {
     for (int i = 0; i < DebugCommands.Instance.Commands.Count; i++)
     {
         DebugCommands.Command command = DebugCommands.Instance.Commands[i];
         if (!command.isCheat)
         {
             string text = string.Empty;
             text = string.Format("{0}", command.name);
             if (!string.IsNullOrEmpty(command.argsDescription))
             {
                 text += string.Format(" {0}", command.argsDescription);
             }
             if (!string.IsNullOrEmpty(command.description))
             {
                 text += string.Format(" - {0}", command.description);
             }
             if (command.isCheat)
             {
             }
             UnityEngine.Debug.Log(text);
         }
     }
 }