Results 1 to 1 of 1

Thread: Make Aimbot

  1. #1
    jeivarmarr
    jeivarmarr is offline
    Guest
    Join Date
    2012 Mar
    Posts
    2
    Thanks Thanks Given 
    1
    Thanks Thanks Received 
    0
    Thanked in
    0 Posts
    Rep Power
    0

    Question Make Aimbot

    I'm trying to make a aimbot and failed.

    I'm using Delphi 7 code is as follows:

    in expos eyPos, ezPos. = Floats on the position of the enemy.
    xPos, yPos, ZPOS. = My position

    I have a OPK And it works very well, but failed to understand the aimbot.

    Code:
    var 
    xPos,yPos,zPos,yawY,pitchX,exPos,eyPos,ezPos,distance:single; 
    begin 
    distance: = sqrt ( 
    ((Expos - xPos) * (Expos - xPos)) + 
    ((eyPos - yPos) * (eyPos - yPos)) + 
    ((ezPos - ZPOS) * (ezPos - ZPOS)) 
    ); 
    
    
    if (distance> 0.0) then 
    begin 
    
    pitchX: = Math.Arcsin ((ezPos - ZPOS) / distance) * 180 / PI; 
    baseaddress = $ 1029344; // mouseY 
    WriteProcessMemory (HandleWindow, ptr (baseaddress)pitchX, 4, write); 
    
    yawY: = -Math.ArcTan2 (expos - xPos, eyPos - yPos)/ Pi * 180 + 180; 
    baseaddress = $ 1029340; // mouseX 
    WriteProcessMemory (HandleWindow, ptr (baseaddress)yawY, 4, write); 
    end; 
    end;

    Coordinates, when I point my enemy

    Code:
    MouseX = Integer: 1079445544, Float: 3,359872818;// POSITION Mouse x Target one Enemy
    MouseY = Integer: 0, Float: 0; // POSITION Mouse y Target one Enemy 
    
    EnemyX = Integer: 1120850412, Float: 103,4100037
    EnemyY = Integer: 1126465556, Float: 164,5003052
    EnemyZ = Integer: 3292002386, Float: -735,8800049 
    
    MiPJx = Integer: 1123293499, Float:  122,0492783
    MiPJy = Integer: 1130397716, Float:  224,5003052
    MiPJz = Integer: 3290636758, Float:  -652,5286865
    
    ------------------------------------------------------
    
    MouseX = Integer: 1025723346, Float: 0,03986722976;// POSITION Mouse x Target one Enemy
    MouseY = Integer: 0, Float: 0; // POSITION Mouse y Target one Enemy
    
    EnemyX = Integer:  1120850412, Float:  103,4100037
    EnemyY = Integer:  1126465556, Float:  164,5003052
    EnemyZ = Integer:  3292002386, Float:  -735,8800049
    
    MiPJx = Integer: 1107750724, Float:  33,73365784
    MiPJy = Integer: 1150324739, Float:  1156,500366
    MiPJz = Integer: 3275330451, Float:  -185,5764618

Similar Threads

  1. [C++] Aimbot Coding
    By Dwar in forum Programming Tutorials
    Replies: 5
    Last Post: 2015-06-27, 05:29 PM
  2. MW3 AimBot
    By mauxxx147 in forum Call of Duty
    Replies: 0
    Last Post: 2013-07-15, 07:01 PM
  3. [Source] Cod4 Promodlive211 Server Side Aimbot! The BEST Aimbot Ever!
    By damaster1901 in forum Call of Duty
    Replies: 0
    Last Post: 2012-06-27, 11:53 AM
  4. [Release] KeyCF Aimbot
    By DarkT in forum CrossFire Hack
    Replies: 2
    Last Post: 2012-01-12, 03:59 AM
  5. [Hack] CS.S aimbot, Universal Aimbot 2.1 - now with motion aimbot
    By rodoxfnx in forum Counter Strike
    Replies: 1
    Last Post: 2011-12-18, 06:27 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
  •