[Source Code] silent aim

Durum
Üzgünüz bu konu cevaplar için kapatılmıştır...
Life is free but live need to pay
Süper Üye
Katılım
4 Şub 2018
Mesajlar
703
Tepki puanı
84
Ödüller
7
Yaş
32
8 HİZMET YILI
I will not provide any bypass in this Tutorial!
I saw some people struggling to make their flickbots work and didn't find any silent aimbots in public sources yet, so I decided to make this guide.
Assuming you already have a screengrab and a method to find enemy positions this should be easy to replicate.


Theory:
The only way to create a silent aimbot without changing the games memory is (to my knowledge) by making an instant flick to the target, shooting and flicking back to the original position instantly. This has to be done with very high speed to achieve a flick that is invisible to the human eye. That's how you can recreate the feeling of a memory silent aimbot.
Please note that the performance of this highly depends on your screengrab. You can also use it with ai aimbots.


Code:

C#

Code:
C#:
bool hotkeyPressed;     //if your hotkey is pressed set to true
bool silentAim = false; //if false do instaflick, if true do silent aim

float distance = 2.5f;  //flick distance
int fovX = 100;         //flick fov
int fovY = 50;
int delay = 250;        //delay between flicks / shots
DateTime lastFlick;     //last time the bot shot at an enemy

while (hotkeyPressed)
{
    //if enemy in fov...
    if (Math.Abs(enemy.X) < fovX && Math.Abs(enemy.Y) < fovY)
    {
         //if last flick was longer than (delay) milliseconds ago...
         if ((DateTime.Now - lastFlick).TotalMilliseconds > delay)
         {
                //create vector to aim at
                var move = newVector2(enemy.X * distance, enemy.Y * distance);
          
                //instaflick to target
                Mouse.Move(move.X, move.Y);

                //shoot
                Mouse.Click(); //I recommend using random delays between press and release

                //flick back to original position if silentAim = true
                if (silentAim)
                    Mouse.Move(-move.X, -move.Y);

                //update lastFlick
                lastFlick = DateTime.Now;
          }
     }
}
This code is in C# but you can easily translate it into any other programming language.
Don't use left click as hotkey unless you have a filter driver or arduino.


Usage:

Setup

1. Go into the range, set bots to eliminate 50 (without strafe)
2. Set the variable silentAim to false
3. Equip a Phantom
4. Press your hotkey
5. If it overflicks decrease distance, if it underflicks increase distance
6. Do steps 4-5 until you find the sweet spot where the flick hits 99% of the time
7. Now set silentAim to true and have fun
smile.gif



Or instead of doing these steps use this equation:
s = in game sensitivity

C++
Code:
  1. distance = 1.07437623 * pow(sens, -0.9936827126);
C#
Code:
  1. distance = 1.07437623 * Math.Pow(sens, -0.9936827126);
Credits/From : unknowncheats
Bağlantıları görmek için lütfen Giriş Yap

i hope MH team can use this on our MH loader or improve this source code



 
Moderatörün son düzenlenenleri:
Onaylı Üye
Katılım
3 Ağu 2022
Mesajlar
54
Tepki puanı
2
Ödüller
1
Yaş
30
3 HİZMET YILI
its cool , about the fps game flip aim
 
ONLY THE DEAD SEE
Onaylı Üye
Katılım
20 Eki 2020
Mesajlar
100
Tepki puanı
5
Ödüller
5
5 HİZMET YILI
reis eline sağlık çok zor yapımı ama güzel iş çıkarmış sin
 
Adaletin Bumu Dünya
Süper Üye
Katılım
11 Ocak 2020
Mesajlar
1,078
Çözümler
1
Tepki puanı
66
Ödüller
8
Yaş
27
6 HİZMET YILI
bu acık kaynak kodu visiul studio gibi ideleri kullanırsan bu kodlar daha anlamlı olur senini icin benim tercihim eclipse
kardeşim bu kodu dc den nasıl kullanıcagım konusunda yardımcı olurmusun
I will not provide any bypass in this Tutorial!
I saw some people struggling to make their flickbots work and didn't find any silent aimbots in public sources yet, so I decided to make this guide.
Assuming you already have a screengrab and a method to find enemy positions this should be easy to replicate.


Theory:
The only way to create a silent aimbot without changing the games memory is (to my knowledge) by making an instant flick to the target, shooting and flicking back to the original position instantly. This has to be done with very high speed to achieve a flick that is invisible to the human eye. That's how you can recreate the feeling of a memory silent aimbot.
Please note that the performance of this highly depends on your screengrab. You can also use it with ai aimbots.


Code:

C#

Code:
C#:
bool hotkeyPressed;     //if your hotkey is pressed set to true
bool silentAim = false; //if false do instaflick, if true do silent aim

float distance = 2.5f;  //flick distance
int fovX = 100;         //flick fov
int fovY = 50;
int delay = 250;        //delay between flicks / shots
DateTime lastFlick;     //last time the bot shot at an enemy

while (hotkeyPressed)
{
    //if enemy in fov...
    if (Math.Abs(enemy.X) < fovX && Math.Abs(enemy.Y) < fovY)
    {
         //if last flick was longer than (delay) milliseconds ago...
         if ((DateTime.Now - lastFlick).TotalMilliseconds > delay)
         {
                //create vector to aim at
                var move = newVector2(enemy.X * distance, enemy.Y * distance);
         
                //instaflick to target
                Mouse.Move(move.X, move.Y);

                //shoot
                Mouse.Click(); //I recommend using random delays between press and release

                //flick back to original position if silentAim = true
                if (silentAim)
                    Mouse.Move(-move.X, -move.Y);

                //update lastFlick
                lastFlick = DateTime.Now;
          }
     }
}
This code is in C# but you can easily translate it into any other programming language.
Don't use left click as hotkey unless you have a filter driver or arduino.


Usage:

Setup

1. Go into the range, set bots to eliminate 50 (without strafe)
2. Set the variable silentAim to false
3. Equip a Phantom
4. Press your hotkey
5. If it overflicks decrease distance, if it underflicks increase distance
6. Do steps 4-5 until you find the sweet spot where the flick hits 99% of the time
7. Now set silentAim to true and have fun
smile.gif



Or instead of doing these steps use this equation:
s = in game sensitivity

C++
Code:
  1. distance = 1.07437623 * pow(sens, -0.9936827126);
C#
Code:
  1. distance = 1.07437623 * Math.Pow(sens, -0.9936827126);
Credits/From : unknowncheats
Bağlantıları görmek için lütfen Giriş Yap

i hope MH team can use this on our MH loader or improve this source code



kardeşim bu kodu dc den nasıl kullanıcagım konusunda yardımcı olurmusun rica etsem hiç anlamıyorum kod işlerinden
 
Life is too short to worry make it SUPREME
Süper Üye
Katılım
3 Şub 2019
Mesajlar
952
Çözümler
3
Tepki puanı
163
Ödüller
8
7 HİZMET YILI
thanks for sharing will try it out is this code from you?
 
Sou um brasileiro muito louco
Süper Üye
Katılım
19 Şub 2021
Mesajlar
600
Çözümler
2
Tepki puanı
54
Ödüller
4
Yaş
23
5 HİZMET YILI
I will not provide any bypass in this Tutorial!
I saw some people struggling to make their flickbots work and didn't find any silent aimbots in public sources yet, so I decided to make this guide.
Assuming you already have a screengrab and a method to find enemy positions this should be easy to replicate.


Theory:
The only way to create a silent aimbot without changing the games memory is (to my knowledge) by making an instant flick to the target, shooting and flicking back to the original position instantly. This has to be done with very high speed to achieve a flick that is invisible to the human eye. That's how you can recreate the feeling of a memory silent aimbot.
Please note that the performance of this highly depends on your screengrab. You can also use it with ai aimbots.


Code:

C#

Code:
C#:
bool hotkeyPressed;     //if your hotkey is pressed set to true
bool silentAim = false; //if false do instaflick, if true do silent aim

float distance = 2.5f;  //flick distance
int fovX = 100;         //flick fov
int fovY = 50;
int delay = 250;        //delay between flicks / shots
DateTime lastFlick;     //last time the bot shot at an enemy

while (hotkeyPressed)
{
    //if enemy in fov...
    if (Math.Abs(enemy.X) < fovX && Math.Abs(enemy.Y) < fovY)
    {
         //if last flick was longer than (delay) milliseconds ago...
         if ((DateTime.Now - lastFlick).TotalMilliseconds > delay)
         {
                //create vector to aim at
                var move = newVector2(enemy.X * distance, enemy.Y * distance);
         
                //instaflick to target
                Mouse.Move(move.X, move.Y);

                //shoot
                Mouse.Click(); //I recommend using random delays between press and release

                //flick back to original position if silentAim = true
                if (silentAim)
                    Mouse.Move(-move.X, -move.Y);

                //update lastFlick
                lastFlick = DateTime.Now;
          }
     }
}
This code is in C# but you can easily translate it into any other programming language.
Don't use left click as hotkey unless you have a filter driver or arduino.


Usage:

Setup

1. Go into the range, set bots to eliminate 50 (without strafe)
2. Set the variable silentAim to false
3. Equip a Phantom
4. Press your hotkey
5. If it overflicks decrease distance, if it underflicks increase distance
6. Do steps 4-5 until you find the sweet spot where the flick hits 99% of the time
7. Now set silentAim to true and have fun
smile.gif



Or instead of doing these steps use this equation:
s = in game sensitivity

C++
Code:
  1. distance = 1.07437623 * pow(sens, -0.9936827126);
C#
Code:
  1. distance = 1.07437623 * Math.Pow(sens, -0.9936827126);
Credits/From : unknowncheats
Bağlantıları görmek için lütfen Giriş Yap

i hope MH team can use this on our MH loader or improve this source code



How do I run this? someone help me?
 
Onaylı Üye
Katılım
2 Ara 2021
Mesajlar
50
Tepki puanı
1
Ödüller
3
Yaş
36
4 HİZMET YILI
thanks for sharing, i will test it on my notebook later today
 
Onaylı Üye
Katılım
27 Şub 2020
Mesajlar
112
Tepki puanı
1
Ödüller
4
Yaş
26
6 HİZMET YILI
I will not provide any bypass in this Tutorial!
I saw some people struggling to make their flickbots work and didn't find any silent aimbots in public sources yet, so I decided to make this guide.
Assuming you already have a screengrab and a method to find enemy positions this should be easy to replicate.


Theory:
The only way to create a silent aimbot without changing the games memory is (to my knowledge) by making an instant flick to the target, shooting and flicking back to the original position instantly. This has to be done with very high speed to achieve a flick that is invisible to the human eye. That's how you can recreate the feeling of a memory silent aimbot.
Please note that the performance of this highly depends on your screengrab. You can also use it with ai aimbots.


Code:

C#

Code:
C#:
bool hotkeyPressed;     //if your hotkey is pressed set to true
bool silentAim = false; //if false do instaflick, if true do silent aim

float distance = 2.5f;  //flick distance
int fovX = 100;         //flick fov
int fovY = 50;
int delay = 250;        //delay between flicks / shots
DateTime lastFlick;     //last time the bot shot at an enemy

while (hotkeyPressed)
{
    //if enemy in fov...
    if (Math.Abs(enemy.X) < fovX && Math.Abs(enemy.Y) < fovY)
    {
         //if last flick was longer than (delay) milliseconds ago...
         if ((DateTime.Now - lastFlick).TotalMilliseconds > delay)
         {
                //create vector to aim at
                var move = newVector2(enemy.X * distance, enemy.Y * distance);
         
                //instaflick to target
                Mouse.Move(move.X, move.Y);

                //shoot
                Mouse.Click(); //I recommend using random delays between press and release

                //flick back to original position if silentAim = true
                if (silentAim)
                    Mouse.Move(-move.X, -move.Y);

                //update lastFlick
                lastFlick = DateTime.Now;
          }
     }
}
This code is in C# but you can easily translate it into any other programming language.
Don't use left click as hotkey unless you have a filter driver or arduino.


Usage:

Setup

1. Go into the range, set bots to eliminate 50 (without strafe)
2. Set the variable silentAim to false
3. Equip a Phantom
4. Press your hotkey
5. If it overflicks decrease distance, if it underflicks increase distance
6. Do steps 4-5 until you find the sweet spot where the flick hits 99% of the time
7. Now set silentAim to true and have fun
smile.gif



Or instead of doing these steps use this equation:
s = in game sensitivity

C++
Code:
  1. distance = 1.07437623 * pow(sens, -0.9936827126);
C#
Code:
  1. distance = 1.07437623 * Math.Pow(sens, -0.9936827126);
Credits/From : unknowncheats
Bağlantıları görmek için lütfen Giriş Yap

i hope MH team can use this on our MH loader or improve this source code



rare to see such good releases, thanks a lot
 
Süper Üye
Katılım
29 Eki 2016
Mesajlar
747
Çözümler
5
Tepki puanı
111
Ödüller
11
9 HİZMET YILI
Kodu kullanabilene güzel maalesef anlamıyorum, keşke anlayabilsem.
 
Onaylı Üye
Katılım
15 Eyl 2020
Mesajlar
52
Tepki puanı
1
Ödüller
5
Yaş
24
5 HİZMET YILI
nasıl kullanılacağını bilen varsa anlatabilir mi bide admin onayı lazım değil mi boyle hile paylaşırken
Post automatically merged:

reis eline sağlık çok zor yapımı ama güzel iş çıkarmış sin
 
Durum
Üzgünüz bu konu cevaplar için kapatılmıştır...
Üst