Results 1 to 9 of 9
  1. #1
    XarutoUsoCrack's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Location
    CFAL Honra & Glória Server
    Posts
    1,087
    Reputation
    51
    Thanks
    2,543
    My Mood
    Relaxed

    How to Make a C++ Aimbot [Part1]

    Frist
    Search All HEAD Strings in OllyDbg
    Now you create a new project in visual c++ [2010 our 2008]

    Aimbot.h
    [HTML]#pragma once
    class CAimbot
    {
    public:
    void AutoZoom ( bool ZoomToggle );
    void AutoWall ();
    void TriggerBot ();
    int GetTargetByDistance ();
    ind DoAim ();

    vec3_t vAimPoint;
    bool bZoomed
    };

    extern CAimbot Aim;
    extern int iShooting;

    [/HTML]

    Aimbot.cpp

    [HTML] No Time To Post..[/HTML]

    Fov Tutorial

    Guys,
    If ScreenX <= CenterX Fov +&&
    If ScreenX >= CenterX Fov - &&
    If ScreenY <= CenterY Fov + &&
    If ScreenY >= CenterY Fov - );
    THis its not Full Code

    Fov = Put in Aimbot.cpp its one small part of aimbot.

    [HTML]bool InFov(vec3_t Origin, float Fov)
    {
    if(Fov==0)
    return true;

    INT CenterX = refdef->Width/2;
    INT CenterY = refdef->Height/2;
    float ScreenX, ScreenY;
    Math.WorldToScreen(Origin,&ScreenX,&ScreenY);

    return ( ( INT ) ScreenX <= CenterX + Fov &&
    ( INT ) ScreenX >= CenterX - Fov &&
    ( INT ) ScreenY <= CenterY + Fov &&
    ( INT ) ScreenY >= CenterY - Fov );
    }[/HTML]

    End Of Part1 Tutorial i ComeBack 2morrow.

    Credits
    KIDEBR
    Wessie
    My Brain.exe

    ____________________
    Based In Wessie Aimbot
    ____________________

    Guys,A Tutorial,Learn MUCH C++ MUCHHHHHHHH..
    Last edited by XarutoUsoCrack; 11-12-2011 at 10:49 AM.

  2. #2
    Brimir's Avatar
    Join Date
    Oct 2011
    Gender
    male
    Posts
    357
    Reputation
    21
    Thanks
    281
    Hmmz:


    Code:
    Check if enemy is in FOV
    here you go guys
    have fun
    
    Code:
    bool CMath::InFov(vec3_t Origin, float Fov)
    {
        if(Fov==0)
            return true;
    
        INT CenterX = refdef->width/2;
        INT CenterY = refdef->height/2;
        float ScreenX, ScreenY;
        WorldToScreen(Origin,&ScreenX,&ScreenY);
    
        return ( ( INT ) ScreenX <= iScreenCenterX + Fov &&
                 ( INT ) ScreenX >= iScreenCenterX - Fov &&
                 ( INT ) ScreenY <= iScreenCenterY + Fov &&
                 ( INT ) ScreenY >= iScreenCenterY - Fov );
    }
    usage:
    Code:
    if( cMaths.InFov(vOrigin,40) )
    {
    //something
    }


    leecher!
    Last edited by Royku; 11-12-2011 at 11:14 AM.
    Thanks @~FALLEN~ for helping me
    Thanks @Shakai for helping me

    Other nice ppl:
    @258456
    @giniyat101

    My usefull posts:
    Byte scanner
    How to make a logger
    Hook example
    How to make a memhack base
    How to use classes with memhacking
    Addie finder

  3. #3
    Royku's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    G-Force.dll
    Posts
    3,015
    Reputation
    381
    Thanks
    3,308
    My Mood
    Devilish
    Quote Originally Posted by Brimir View Post
    Hmmz:


    Code:
    Check if enemy is in FOV
    here you go guys
    have fun
    
    Code:
    bool CMath::InFov(vec3_t Origin, float Fov)
    {
        if(Fov==0)
            return true;
    
        INT CenterX = refdef->width/2;
        INT CenterY = refdef->height/2;
        float ScreenX, ScreenY;
        WorldToScreen(Origin,&ScreenX,&ScreenY);
    
        return ( ( INT ) ScreenX <= iScreenCenterX + Fov &&
                 ( INT ) ScreenX >= iScreenCenterX - Fov &&
                 ( INT ) ScreenY <= iScreenCenterY + Fov &&
                 ( INT ) ScreenY >= iScreenCenterY - Fov );
    }
    usage:
    Code:
    if( cMaths.InFov(vOrigin,40) )
    {
    //something
    }


    leecher!

    Dont Post out side links if he leech something just PM a staff .
    i deleted it for now

  4. The Following User Says Thank You to Royku For This Useful Post:

    giniyat101 (11-12-2011)

  5. #4
    XarutoUsoCrack's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Location
    CFAL Honra & Glória Server
    Posts
    1,087
    Reputation
    51
    Thanks
    2,543
    My Mood
    Relaxed
    LEEEEEEEEEEEEEECH ?????????????????????????????????????????????????? ??????????????????????????
    I AM PUT CREDITS.
    TALK WHIT KIDEBR.
    OFFSIDE LINKS ?????????????????????????????????????????????????? ???????????????????????????????????????
    WTF ?????????????????????????????????????????????????? ?????????????????????????????????????????????????? ??
    I AM NOT LEECHER MAN.

    HE DONT POST CREDITS TO WESSIE BASE MAN.I SURE I RETIRED FOR A COD4 HOOK BASE FOR WESSIE SEE SCREEN SHOT MAN ITS STUPID THIS MAN



    THE PEOPLE HAVE LEARN NO FULL CODE THIS ITS LEECH !
    Last edited by XarutoUsoCrack; 11-12-2011 at 11:22 AM.

  6. #5
    XarutoUsoCrack's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Location
    CFAL Honra & Glória Server
    Posts
    1,087
    Reputation
    51
    Thanks
    2,543
    My Mood
    Relaxed
    My Base Its Portuguese See.
    ////////////////(j_helmet)\\\\\\\\\\\\\\\\\\
    bool EmFov(Vetor3_t Posiçao, float Fov1)
    {
    if(Fov1==0)
    return true;

    INT CentroX = refdef->Tamanho/2;
    INT CentroY = refdef->Largura/2;
    float TelaX, TelaY;
    Math.MundoParaTela(Posiçao,&TelaX,&TelaY);

    return ( ( INT ) TelaX <= CentroX + Fov1 &&
    ( INT ) TelaX >= CentroX - Fov1 &&
    ( INT ) TelaY <= CentroY + Fov1 &&
    ( INT ) TelaY >= CentroY - Fov1 );
    }

    //////////////////-(0x42M5A11)-\\\\\\\\\\\\\\\\

  7. #6
    Code[VB]'s Avatar
    Join Date
    Mar 2011
    Gender
    male
    Location
    CODER
    Posts
    608
    Reputation
    11
    Thanks
    702
    My Mood
    Bitchy
    lol 100% leech xD

  8. #7
    XarutoUsoCrack's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Location
    CFAL Honra & Glória Server
    Posts
    1,087
    Reputation
    51
    Thanks
    2,543
    My Mood
    Relaxed
    i not leech stop doing drugs man. I will put MORE MUCH like ESP BOX,ESP and AIMBOT FULLCODE and Killmarks Sounds.

  9. #8
    derh.acker's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    localhost
    Posts
    826
    Reputation
    14
    Thanks
    616
    My Mood
    Angelic
    This is no Tutorial, this is a code

  10. The Following 2 Users Say Thank You to derh.acker For This Useful Post:

    Code[VB] (11-12-2011),giniyat101 (11-12-2011)

  11. #9
    Osama bin Lad3n's Avatar
    Join Date
    Nov 2011
    Gender
    male
    Location
    On ur sista's bed
    Posts
    225
    Reputation
    14
    Thanks
    134
    My Mood
    Relaxed
    yeah its not a tut its a code & thats also leeched

Similar Threads

  1. how to make the Secret Aimbot work again
    By HaX00R in forum Combat Arms Discussions
    Replies: 11
    Last Post: 12-31-2009, 01:17 AM
  2. [Tutorial]How to make the infamous aimbot last more than one game[Vista]
    By kimodragon in forum Combat Arms Discussions
    Replies: 60
    Last Post: 09-06-2009, 09:04 PM
  3. Please post : how to make combat arms hack with aimbot and bypass video please!
    By zerro1995 in forum Programming Tutorial Requests
    Replies: 1
    Last Post: 06-02-2009, 10:10 AM
  4. how to make a aimbot?
    By xTrylanxback in forum General Game Hacking
    Replies: 15
    Last Post: 06-01-2009, 02:38 AM
  5. free aimbot or instructons on how to make one.
    By jts88825 in forum General Hacking
    Replies: 19
    Last Post: 02-07-2009, 01:27 PM