예제 #1
0
        public void GoSwitch()
        {
            int a = -1, b = -1;

            Consts.KEY_CODE.TryGetValue("Tab", out a);
            Consts.KEY_VALUE.TryGetValue("Tab", out b);
            ProcessHandler.SendKey(a, b);
            Thread.Sleep(100);
        }
예제 #2
0
 public void GoAttack()
 {
     if (cfg.monAlive)
     {
         int a = -1, b = -1;
         Consts.KEY_CODE.TryGetValue("1", out a);
         Consts.KEY_VALUE.TryGetValue("1", out b);
         ProcessHandler.SendKey(a, b);
         Thread.Sleep(100);
     }
 }