Adblock breaks this site

Simple FPS Aimbot

Discussion in 'Archives' started by Annex, Aug 4, 2007.

  1. Annex

    Annex Ballin'
    Veteran (Ex-Admin)
    PHP Programmers Retired Administrator

    Joined:
    Aug 28, 2005
    Posts:
    2,324
    Referrals:
    3
    Sythe Gold:
    0
    UWotM8?
    Simple FPS Aimbot

    Works on anything that stores enemy coords in memory this code is from myg0t its not mine.

    Code:
    'Your xyz coordinates in the game
    Dim my_x As Single
    Dim my_y As Single
    Dim my_z As Single
    
    'The enemy coordinates in game
    Dim nme_x As Single
    Dim nme_y As Single
    Dim nme_z As Single
    
    'static testing values for aiming at
    'nme_x = -103.08
    'nme_y = 1526.4
    'nme_z = 96.03
    
    'This portion is an example of getting the enemy xyz coords directly from memory
    ReadProcessMemory pHandle, ByVal &H19AAEFB8, nme_x, 4, 0&   'x +0
    ReadProcessMemory pHandle, ByVal &H19AAEFBC, nme_y, 4, 0&    'y +4
    ReadProcessMemory pHandle, ByVal &H19AAEFD4, nme_z, 4, 0&   'z +8
    
    'aimbot correction testing (height depth)
    nme_z = nme_z + 55
    'nme_x = nme_x - 10
    'nme_y = nme_y + 5
    
    'math shit 
    Dim hyp As Single
    
    Dim delta_x As Single
    Dim delta_y As Single
    Dim delta_z As Single
    
    Dim pitch As Single
    Dim yaw As Single
    Dim roll As Single
    roll = 0
    
    'This reads your xyz position in the game
    ReadProcessMemory pHandle, ByVal &H242EFC34, my_x, 4, 0&    'x +0
    ReadProcessMemory pHandle, ByVal &H242EFC38, my_y, 4, 0&    'y +4
    ReadProcessMemory pHandle, ByVal &H242EFC3C, my_z, 4, 0&    'z +8
    
    delta_x = my_x - nme_x
    delta_y = my_y - nme_y
    delta_z = my_z - nme_z
    
    hyp = ((delta_x * delta_x) + (delta_y * delta_y) + (delta_z * delta_z)) ^ (1 / 2)
    
    pitch = Atn(delta_z / hyp) * 57.295779513082
    
    'sometimes a certain view angle goes to 0 and makes the aimbot go crazy, this will use the last non 0 integer so you can maintain a smooth non glitchy aimbot
    If delta_x = 0 Then
    delta_x = backup
    End If
    
    'this saves your last view angle for backup in case it is 0 next time around
    backup = delta_x
    yaw = Atn(delta_y / delta_x) * 57.295779513082
    If delta_x > 0 Then
        yaw = yaw + 180
    End If
    
    'this writes directly to your view angles and makes you aim at the enemy
    WriteProcessMemory pHandle, ByVal &H147489C, pitch, 4, 0&   'pitch +0
    WriteProcessMemory pHandle, ByVal &H14748A0, yaw, 4, 0&     'yaw +4
    WriteProcessMemory pHandle, ByVal &H14748A4, roll, 4, 0&    'roll +8
     
  2. Oblitorate

    Oblitorate Active Member
    Banned

    Joined:
    Mar 27, 2007
    Posts:
    124
    Referrals:
    0
    Sythe Gold:
    0
    Simple FPS Aimbot

    nice thanks, wanting to make CS hacks, got any way to find out if they're VAC'd?
     
  3. ozozo

    ozozo Member
    Banned

    Joined:
    Feb 11, 2007
    Posts:
    82
    Referrals:
    0
    Sythe Gold:
    0
    Simple FPS Aimbot

    Cool thanks!
     
  4. ozozo

    ozozo Member
    Banned

    Joined:
    Feb 11, 2007
    Posts:
    82
    Referrals:
    0
    Sythe Gold:
    0
    Simple FPS Aimbot

    Cool thanks!
     
  5. ozozo

    ozozo Member
    Banned

    Joined:
    Feb 11, 2007
    Posts:
    82
    Referrals:
    0
    Sythe Gold:
    0
    Simple FPS Aimbot

    Cool thanks!
     
  6. Cruel__Machine

    Cruel__Machine Guest

    Referrals:
    100
    Simple FPS Aimbot

    I don't understand.
    What game is it for? Because I'm sure not all FPS games store coords in the same spot.
     
  7. timk777

    timk777 Active Member

    Joined:
    Feb 19, 2007
    Posts:
    156
    Referrals:
    0
    Sythe Gold:
    0
    Simple FPS Aimbot

    CS is open source. Why would you want to make a hack for it if you can just mod it yourself.
     
  8. Annex

    Annex Ballin'
    Veteran (Ex-Admin)
    PHP Programmers Retired Administrator

    Joined:
    Aug 28, 2005
    Posts:
    2,324
    Referrals:
    3
    Sythe Gold:
    0
    UWotM8?
    Simple FPS Aimbot

    Its a template, you edit the area where coords are stored. add keys to do shit ect.
     
  9. pwnintheface

    pwnintheface Member
    Banned

    Joined:
    Jul 31, 2007
    Posts:
    70
    Referrals:
    0
    Sythe Gold:
    0
    Simple FPS Aimbot

    Wow, I like the code. You forgot the API declaractions tho for some of the functions.
     
  10. matac16

    matac16 Guest

    Referrals:
    0
    Simple FPS Aimbot

    i dont know programing,i just wanna aimbot for unreal tournament goty,can somebody help me??????
     
  11. timk777

    timk777 Active Member

    Joined:
    Feb 19, 2007
    Posts:
    156
    Referrals:
    0
    Sythe Gold:
    0
    Simple FPS Aimbot

    Help you with what? The code is right there. Just ask someone to compile it. If you want to I will for you.
     
  12. -Execution

    -Execution Guest

    Referrals:
    0
    Simple FPS Aimbot

    oooh sweet
     
  13. Annex

    Annex Ballin'
    Veteran (Ex-Admin)
    PHP Programmers Retired Administrator

    Joined:
    Aug 28, 2005
    Posts:
    2,324
    Referrals:
    3
    Sythe Gold:
    0
    UWotM8?
    Simple FPS Aimbot

    Its not my code, and its sound. THIS ISN'T A WORKING AIMBOT, you still need to input the coord locations and a hotkey execution.
     
  14. Terrankiller

    Terrankiller Ex-Administrator
    Retired Administrator Visual Basic Programmers

    Joined:
    May 7, 2005
    Posts:
    1,286
    Referrals:
    1
    Sythe Gold:
    1
    Simple FPS Aimbot

    You need to use a program that searching for specific values in memory. A good one is TSearch:

    http://www.terrankiller.com/forums/viewtopic.php?f=42&t=41

    When you find the byte that stores coordinates, you change the addresses given in this procedure annex posted to the new and correct addresses for your aim bot game.
     
  15. timk777

    timk777 Active Member

    Joined:
    Feb 19, 2007
    Posts:
    156
    Referrals:
    0
    Sythe Gold:
    0
    Simple FPS Aimbot

    Well look at the sexy kid who posted that. :)
     
  16. Terrankiller

    Terrankiller Ex-Administrator
    Retired Administrator Visual Basic Programmers

    Joined:
    May 7, 2005
    Posts:
    1,286
    Referrals:
    1
    Sythe Gold:
    1
    Simple FPS Aimbot

    I'm advertising my forum, shhhh.
     
  17. matac16

    matac16 Guest

    Referrals:
    0
    Simple FPS Aimbot

    can u?please.........
     
  18. matac16

    matac16 Guest

    Referrals:
    0
    Simple FPS Aimbot

    i dont know where i should put this code,in system,but where?i tried in user.ini and unreal tournament.ini,but don't work,somebody tell me!!!!????
     
  19. 1337_Byte

    1337_Byte Grand Master
    Banned

    Joined:
    Jan 21, 2007
    Posts:
    2,132
    Referrals:
    0
    Sythe Gold:
    0
    Simple FPS Aimbot

    It's good code but, keep autoing and hacking to MMO's.
     
  20. hmm

    hmm Active Member

    Joined:
    Jan 21, 2007
    Posts:
    181
    Referrals:
    2
    Sythe Gold:
    5
    Simple FPS Aimbot

    lmao..this is visual basic, we arent editing configuration files for games..
     
< sell mage/range | Selling 3 level 20s for GW >


 
 
Adblock breaks this site