Exemplo n.º 1
0
Arquivo: Form1.cs Projeto: n1co/ikick
 private void Form1_Load(object sender, EventArgs e)
 {
     application = new BlackMagic(processes[0].Id);
     functionManager = new FunctionManager(application);
     string appPath = Path.GetDirectoryName(Application.ExecutablePath);
     IniFile ini = new IniFile(appPath + @"\config.ini");
     functionManager.LuaDoString("print(\"|cffff6060<|r|cFF00FFFFiKick|cffff6060>|r Ready !\")");
 }
Exemplo n.º 2
0
        private void Form1_Load(object sender, EventArgs e)
        {
            application     = new BlackMagic(processes[0].Id);
            functionManager = new FunctionManager(application);
            string  appPath = Path.GetDirectoryName(Application.ExecutablePath);
            IniFile ini     = new IniFile(appPath + @"\config.ini");

            functionManager.LuaDoString("print(\"|cffff6060<|r|cFF00FFFFiKick|cffff6060>|r Ready !\")");
        }
Exemplo n.º 3
0
Arquivo: Form1.cs Projeto: n1co/ikick
 public Form1()
 {
     InitializeComponent();
     BlackMagic application;
     FunctionManager functionManager;
     application = new BlackMagic(processes[0].Id);
     functionManager = new FunctionManager(application);
     hook.KeyPressed +=
         new EventHandler<KeyPressedEventArgs>(hook_KeyPressed);
     hook.RegisterHotKey(HotKeysHandler.ModifierKeys.Alt, Keys.X);
 }
Exemplo n.º 4
0
        public Form1()
        {
            InitializeComponent();
            BlackMagic      application;
            FunctionManager functionManager;

            application      = new BlackMagic(processes[0].Id);
            functionManager  = new FunctionManager(application);
            hook.KeyPressed +=
                new EventHandler <KeyPressedEventArgs>(hook_KeyPressed);
            hook.RegisterHotKey(HotKeysHandler.ModifierKeys.Alt, Keys.X);
        }