Author Topic: Aimbot maker?  (Read 1822 times)

0 Members and 1 Guest are viewing this topic.

[TKC]Lasher

  • Heckler Apprentice
  • ****
  • Posts: 1394
  • IWHBYD
    • View Profile
    • http://www.tkc-community.net
Aimbot maker?
« on: April 12, 2009, 11:26:50 pm »
I'm sure it's faaar beyond my what I am capable of, but I'm wondering what the general concepts are to making an aimbot. Any ideas?  :icon_biggrin2
Whenever work feels overwhelming, just remember that you are going to die.

ZOldDude

  • The Unknown Rank!
  • Administrator
  • MasstKer
  • *
  • Posts: 20874
  • Old School TKC
    • View Profile
    • Admin
Re: Aimbot maker?
« Reply #1 on: April 12, 2009, 11:39:00 pm »
Depends on how you want to make it.
The easyest is to have it aim at a color (that one is in the public download section).
More advanced is to locate the model in the program and lock onto parts of it's frame/bones.

*While we crash and burn, small, low tech, agrarian societies such as the Hmong in the mountains of Laos will continue on without so much as blinking an eye.*

[TKC]Lasher

  • Heckler Apprentice
  • ****
  • Posts: 1394
  • IWHBYD
    • View Profile
    • http://www.tkc-community.net
Re: Aimbot maker?
« Reply #2 on: April 12, 2009, 11:59:20 pm »
Lol which one? I put in a search for 'aimbot' and I tried 'triggerbot' too but it says there is an error and I should report it to an administrator. I have downloaded the crosshair thing but it said in the readme thing for the triggerbot it was for MOHAA(?)
Whenever work feels overwhelming, just remember that you are going to die.

ZOldDude

  • The Unknown Rank!
  • Administrator
  • MasstKer
  • *
  • Posts: 20874
  • Old School TKC
    • View Profile
    • Admin
Re: Aimbot maker?
« Reply #3 on: April 13, 2009, 02:21:43 am »
OGC Aimbot.
There is a tut for it in the d/l section and the program it's self must be in one of the VC cheat packs.

If you can't locate it then here is the Google link:
http://www.google.com/search?hl=en&q=OGC+Aimbot&btnG=Google+Search&aq=f&oq=


*While we crash and burn, small, low tech, agrarian societies such as the Hmong in the mountains of Laos will continue on without so much as blinking an eye.*

[TKC]Lasher

  • Heckler Apprentice
  • ****
  • Posts: 1394
  • IWHBYD
    • View Profile
    • http://www.tkc-community.net
Re: Aimbot maker?
« Reply #4 on: April 13, 2009, 05:30:14 am »
I already had it, it was in the crosshairs
Whenever work feels overwhelming, just remember that you are going to die.

Behemoth

  • Intentional Cheater
  • **
  • Posts: 45
    • View Profile
Re: Aimbot maker?
« Reply #5 on: April 24, 2009, 02:56:07 pm »
aim on color blue/red....

#include <windows.h>
bool red=false;      //variable
bool blue=false;
int WINAPI WinMain (HINSTANCE hThisInstance,HINSTANCE hPrevInstance,LPSTR lpszArgument, int nFunsterStil)


    {
       while(1){   //keep the programme running
          Sleep(1);   //pause for a millisecond
          if(GetAsyncKeyState(VK_F10)& (1==1)){   //if F10 is pressed
             blue=!blue;   //change the current value for blue
          }


              if(GetAsyncKeyState(VK_F11)&(1==1)){
                 red=!red;
              }
              if(red || blue){   //if red or blue is on
                 int x, y;
                 HDC hdc = GetDC(HWND_DESKTOP); //get window
                 COLORREF aPixel;      //variable aPixel
                 int cx = GetSystemMetrics(SM_CXSCREEN); //get resolution
                 int cy = GetSystemMetrics(SM_CYSCREEN); //get resolution
                 while(red || blue){   //while red or blue is on
                    Sleep(1);   //pause so not to use up resources
                    for(y=1;y<cy;y++){   //scan the screen. From y=1 - y=resolution
                       for(x=1;x<cx;x++){ //scan the screen. From x=1 - x=resolution
                          aPixel = GetPixel(hdc, x, y);   //get colour of every pixel
                          if(blue){   //if blue
                             for(int colour=40;colour<255;colour++){   //range of accepted RGB values
                                if(aPixel==RGB(0,0,colour)){   //if pixel is have the colour
                                   SetCursorPos(x,y);      //set mouse cursor to that position
                                }
                             }
                          }
                          else if(red){   //look above


                                 for(int colour=40;colour<255;colour++){
                                    if(aPixel==RGB(colour,0,0)){   
                                       SetCursorPos(x,y);   
                                    }
                                 }
                              }
                           }
                           Sleep(1);   //so not to use to much CPU on a high resolution
                        }
                     }
                  }
               }
        }
Don't follow me - I walk into walls.

Berger

  • Online Villain
  • ***
  • Posts: 208
  • strdfu :)
    • View Profile
Re: Aimbot maker?
« Reply #6 on: April 24, 2009, 03:35:41 pm »
Is it really that sensitive? Like in your code the aimbot would catch every single blue/red pixel in a map......did not test it tbh.

So you should be shooting around randomly (depends on the colors of the map)
« Last Edit: April 24, 2009, 06:31:25 pm by Berger »

Behemoth

  • Intentional Cheater
  • **
  • Posts: 45
    • View Profile
Re: Aimbot maker?
« Reply #7 on: April 24, 2009, 03:43:11 pm »
i know... its just an basic example
Don't follow me - I walk into walls.

MrMedic

  • MasstKer
  • ********
  • Posts: 8900
  • programmer/dev/software engineer
    • View Profile
Re: Aimbot maker?
« Reply #8 on: April 24, 2009, 05:05:58 pm »
to do colour bots you must blend the red green blue because every pixel has red or green or blue in it ^ that example would not work very well

this is how would do it

circle in from outside , scan pixels inside a radian

if pixel on tangent <= 255,100,100 && >= 251 , 100 , 100( ie mainly red same colour as chams or wallhack or skinned player )

then move mouse -thepixel it hit

obviously you wouldnt move it plus or it would take it away from the center

this is really easy to do but complicated math is needed so good luck :)


note: colour bots are well known for being rubbish but go for it ,you may learn something
EnCoded Message: i3iy9yl8kr2xf3g2Txs3pr6ye3ya7jg5ty2z

https://www.youtube.com/watch?v=62_7-AYfdkQ
you need a paypal account for the private versions.

Website:
http://bit.ly/medic101

Teamspeak 3: 85.236.101.5:10157

Behemoth

  • Intentional Cheater
  • **
  • Posts: 45
    • View Profile
Re: Aimbot maker?
« Reply #9 on: April 24, 2009, 05:27:12 pm »
yes... you are right! i didn't think about that while doing this example...
thanx for info!!!
Don't follow me - I walk into walls.