Results 1 to 2 of 2

Thread: Delphi + Aika

  1. #1
    skeldyn
    skeldyn is offline
    Guest
    Join Date
    2012 Jun
    Posts
    1
    Thanks Thanks Given 
    10
    Thanks Thanks Received 
    0
    Thanked in
    0 Posts
    Rep Power
    0

    Question Delphi + Aika

    Hi Friends. I have a problem. I used Delphi to make a bot attack skills but did not work, I used the following command:

    Code:
    keybd_event (49, 0, 0, 0);
    does anyone know how to use it effectively?

  2. #2
    JeanBR
    JeanBR is offline
    Senior Member JeanBR's Avatar
    Join Date
    2012 Jan
    Location
    Hestia
    Posts
    326
    Thanks Thanks Given 
    41
    Thanks Thanks Received 
    210
    Thanked in
    82 Posts
    Rep Power
    0
    Friend search correctly code the button that you want to be pressed to take action. Enable the form for the main function KeyPreview truth. Then try to take on this solution.


    remember paste this code into the button of the desired property keydown.



    Code:
    procedure TForm1.Button1KeyDown(Sender: TObject; var Key: Word;
      Shift: TShiftState);
    begin
      If Key = VK_F10 Then
       timer1.interval:= strtoint(edit1.text);
    timer1.enabled:= true;
    end;
    Welcome To PGC.

Similar Threads

  1. [Delphi] Aika Radar, Bot framework
    By Dwar in forum Delphi
    Replies: 13
    Last Post: 2017-05-12, 05:10 AM
  2. [Delphi] Dll Injection functions
    By Dwar in forum Delphi
    Replies: 3
    Last Post: 2016-06-17, 11:18 PM
  3. [Delphi] Delphi elementclient inject
    By marcelo380 in forum Perfect World
    Replies: 0
    Last Post: 2012-06-08, 09:13 PM
  4. can someone convert that? c to delphi ?
    By kofmaster in forum Delphi
    Replies: 3
    Last Post: 2011-08-22, 01:39 AM
  5. [Delphi] Delphi Training Video
    By Dwar in forum Programming Tutorials
    Replies: 0
    Last Post: 2010-11-29, 04:10 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •