Anybody with experience coding Aimbots. menu

User Tag List

Results 1 to 14 of 14
  1. #1
    R4zyel's Avatar Active Member
    Reputation
    26
    Join Date
    Apr 2009
    Posts
    63
    Thanks G/R
    12/7
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Anybody with experience coding Aimbots.

    So i have enemies coordinates (head aim) X,Y,Z
    Aaaand i also have my player x,y,z.

    I'm wondering what else do i need to position my aim to these coordinates.
    I've also found Z in the aim , like it goes from -1 to 1 in float, aiming from botton till top.

    Not sure what else i need, and how with these parameters could make my aim point to x,y,z.

    Thanks in advance,

    Anybody with experience coding Aimbots.
  2. #2
    Perplexity's Avatar Member
    Reputation
    4
    Join Date
    Aug 2016
    Posts
    16
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    You need the view matrix and a world 2 screen function. Have fun.

  3. Thanks Sychotix, R4zyel (2 members gave Thanks to Perplexity for this useful post)
  4. #3
    fully1337's Avatar Member
    Reputation
    2
    Join Date
    Jul 2015
    Posts
    4
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Do you mind giving me the offset for the coords?

    Topic:
    Instead of getting viewmatrix, you could also convert the coords to w2s and use mouse_event to move the mouse to XY.

  5. Thanks R4zyel (1 members gave Thanks to fully1337 for this useful post)
  6. #4
    R4zyel's Avatar Active Member
    Reputation
    26
    Join Date
    Apr 2009
    Posts
    63
    Thanks G/R
    12/7
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    World 2 screen wasn't necessary, i managed to use only 3D vectors and the distance to get sin and cos for aimx, aimy, aimz.
    OP aimbot soon, hope not OP ban :P
    Thanks.

  7. #5
    Sychotix's Avatar Moderator Authenticator enabled
    Reputation
    1421
    Join Date
    Apr 2006
    Posts
    3,943
    Thanks G/R
    285/572
    Trade Feedback
    1 (100%)
    Mentioned
    7 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by R4zyel View Post
    World 2 screen wasn't necessary, i managed to use only 3D vectors and the distance to get sin and cos for aimx, aimy, aimz.
    OP aimbot soon, hope not OP ban :P
    Thanks.
    If that does actually work, make sure you are using simulated/estimated sin/cos functions. Trig functions are VERY slow and will significantly impact performance.
    Last edited by Sychotix; 11-14-2016 at 07:36 AM.

  8. Thanks R4zyel (1 members gave Thanks to Sychotix for this useful post)
  9. #6
    R4zyel's Avatar Active Member
    Reputation
    26
    Join Date
    Apr 2009
    Posts
    63
    Thanks G/R
    12/7
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Sychotix View Post
    If that does actually work, make sure you are using simulated/estimated sin/cos functions. Trig functions are VERY slow and will significantly impact performance.
    Perhaps you are right, maybe my big computer makes up the performance loss, so i do not notice. Here a sample.
    Custom Aimbot Overwatch - YouTube

  10. Thanks Sychotix (1 members gave Thanks to R4zyel for this useful post)
  11. #7
    Sychotix's Avatar Moderator Authenticator enabled
    Reputation
    1421
    Join Date
    Apr 2006
    Posts
    3,943
    Thanks G/R
    285/572
    Trade Feedback
    1 (100%)
    Mentioned
    7 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by R4zyel View Post
    Perhaps you are right, maybe my big computer makes up the performance loss, so i do not notice. Here a sample.
    Custom Aimbot Overwatch - YouTube
    Seems to work very well. I assume you are injecting into memory to accomplish this. Supposedly, overwatch has pretty decent detection for anything being injected (a DDL or even WriteProcessMemory). I believe there was also some sort of ReadProcessMemory protection... but there was some way to bypass it. Regardless, good luck! I don't personally condone cheating in a FPS game... but I like seeing others learn from their development! =)

    EDIT: Oh, and while you are at it... might want to look into some sort of toggle or a way to determine when not to aim. I saw you had issues in wraith form because it was still aiming at them. The twitch movements are also SUPER obvious, which will lead to player reports. Try smoothing it out a bit or maybe do a sort of aim assist where it gradually nudges it towards their heads
    Last edited by Sychotix; 11-16-2016 at 05:22 PM.

  12. Thanks R4zyel (1 members gave Thanks to Sychotix for this useful post)
  13. #8
    R4zyel's Avatar Active Member
    Reputation
    26
    Join Date
    Apr 2009
    Posts
    63
    Thanks G/R
    12/7
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Sychotix View Post
    Seems to work very well. I assume you are injecting into memory to accomplish this. Supposedly, overwatch has pretty decent detection for anything being injected (a DDL or even WriteProcessMemory). I believe there was also some sort of ReadProcessMemory protection... but there was some way to bypass it. Regardless, good luck! I don't personally condone cheating in a FPS game... but I like seeing others learn from their development! =)

    EDIT: Oh, and while you are at it... might want to look into some sort of toggle or a way to determine when not to aim. I saw you had issues in wraith form because it was still aiming at them. The twitch movements are also SUPER obvious, which will lead to player reports. Try smoothing it out a bit or maybe do a sort of aim assist where it gradually nudges it towards their heads
    Yes man i'm being called out way too often pff.
    Need to improve it a lot of workz...

  14. #9
    Nerdrenx's Avatar Active Member
    Reputation
    31
    Join Date
    Nov 2012
    Posts
    109
    Thanks G/R
    2/13
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I pmed you but basically to smooth out:

    Determine whether or not aiming is required
    Determine movement speed, accuracy
    Randomize movements : Thing such as Bezier Curves and auto generating it are important
    Prevent locking by doing corrections only.
    If you PM me, be sure your inbox is not full...

  15. Thanks R4zyel (1 members gave Thanks to Nerdrenx for this useful post)
  16. #10
    persian1992's Avatar Member
    Reputation
    2
    Join Date
    Sep 2016
    Posts
    37
    Thanks G/R
    5/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    So far I can totally agree to Sychotix and Nerdrenx.
    I wrote you a privat message, which you can answer if you find the time

  17. #11
    JordaanMe's Avatar Member
    Reputation
    2
    Join Date
    Aug 2014
    Posts
    4
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I wanna PM you but you're message box is full ^^

    I'm very surprised that someone else found a way to go in

    I'm interested in helping you.

    I've created several artificial intelligences that had to react like a human being would do, with a human behaviour. If you're interested, you can always contact me on my Skype address, I'll give you in PM. It'd be a real pleasure to help you with your further projects.

    I hope you'll get back to me soon!

    Till then,

    Kind regards,
    JordaanMe
    Last edited by JordaanMe; 11-23-2016 at 11:05 PM.

  18. Thanks R4zyel (1 members gave Thanks to JordaanMe for this useful post)
  19. #12
    R4zyel's Avatar Active Member
    Reputation
    26
    Join Date
    Apr 2009
    Posts
    63
    Thanks G/R
    12/7
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by JordaanMe View Post
    I wanna PM you but you're message box is full ^^

    I'm very surprised that someone else found a way to go in

    I'm interested in helping you.

    I've created several artificial intelligences that had to react like a human being would do, with a human behaviour. If you're interested, you can always contact me on my Skype address, I'll give you in PM. It'd be a real pleasure to help you with your further projects.

    I hope you'll get back to me soon!

    Till then,

    Kind regards,
    JordaanMe
    I always like to learn from facing this troubles. The nearest one, would be to make a random curve upon aiming the target, so i could prevent the aimlock that shows my aim like following my target (pretty obviousz

  20. Thanks JordaanMe (1 members gave Thanks to R4zyel for this useful post)
  21. #13
    JordaanMe's Avatar Member
    Reputation
    2
    Join Date
    Aug 2014
    Posts
    4
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by R4zyel View Post
    I always like to learn from facing this troubles. The nearest one, would be to make a random curve upon aiming the target, so i could prevent the aimlock that shows my aim like following my target (pretty obviousz
    Yeah, I saw the video.
    You need to randomize some kind of specific Bezier with a f(x). Maybe we could talk about it

  22. #14
    FiTTeRBoy91's Avatar Member TheProvider CoreCoins Purchaser
    Reputation
    8
    Join Date
    Sep 2016
    Posts
    114
    Thanks G/R
    5/6
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    I can put you in contact with an expert of mine. If interested PM

Similar Threads

  1. Hover Effect with BB code
    By Phase228 in forum Community Chat
    Replies: 0
    Last Post: 02-26-2008, 08:58 PM
  2. More Renting tips with experience
    By Strupantwn in forum World of Warcraft General
    Replies: 1
    Last Post: 01-06-2008, 03:41 PM
  3. Replies: 2
    Last Post: 11-09-2007, 08:54 AM
  4. Replies: 4
    Last Post: 10-03-2007, 12:34 PM
  5. Auto-Queue/Anti-AFK HonorBot With Source Code (c++)
    By Flying Piggy in forum World of Warcraft Bots and Programs
    Replies: 12
    Last Post: 09-12-2007, 11:13 AM
All times are GMT -5. The time now is 05:01 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search