Thread: Vehicle Aimbot

Results 1 to 6 of 6
  1. #1
    ineedaudir8's Avatar
    Join Date
    Jul 2012
    Gender
    female
    Location
    The land of the Rising Desu
    Posts
    38
    Reputation
    10
    Thanks
    2
    My Mood
    Twisted

    Question Vehicle Aimbot

    Its possible, but, I know 0 about C++.
    I was wondering if someone could help me compile one.
    I have the source code and the aimbot math.
    Thanks in advance.

  2. #2
    Lovroman's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Posts
    9,417
    Reputation
    611
    Thanks
    11,989
    My Mood
    Cheerful
    I don't recommend you to start with that kinds of hacks if you don't have any C++ knowledge.
    You can post the code here, I'll try to help you, tho.

  3. The Following User Says Thank You to Lovroman For This Useful Post:

    nexus.azn (12-17-2013)

  4. #3
    ineedaudir8's Avatar
    Join Date
    Jul 2012
    Gender
    female
    Location
    The land of the Rising Desu
    Posts
    38
    Reputation
    10
    Thanks
    2
    My Mood
    Twisted
    Quote Originally Posted by Lovroman View Post
    I don't recommend you to start with that kinds of hacks if you don't have any C++ knowledge.
    You can post the code here, I'll try to help you, tho.
    Well, knock yourself out.
    This is Dudeinberlin's code.


    Last edited by ineedaudir8; 12-17-2013 at 09:08 AM.

  5. #4
    azem's Avatar
    Join Date
    Jun 2011
    Gender
    male
    Location
    Mexico
    Posts
    5
    Reputation
    10
    Thanks
    0
    Keep me updated on this, sounds fun c:

  6. #5
    ineedaudir8's Avatar
    Join Date
    Jul 2012
    Gender
    female
    Location
    The land of the Rising Desu
    Posts
    38
    Reputation
    10
    Thanks
    2
    My Mood
    Twisted
    Forgot to post the code. Baka R8.
    Code:
    //add this to your vec3 class. or to your physiycs class if you have one. or rewrite it and just add it to your hack//you will need a dotproduct function
    float Vec3::AimFloat(Vec3 &delta, const float &FOV) const
    {
        return asinf(this->dot(delta)) / FOV;
    }
    some pointers
    
    Code:
    Vec3 Origin    = GameRenderer->Singleton()->m_viewParams.firstPersonTransform.trans;
    Vec3 Left    = GameRenderer->Singleton()->m_viewParams.firstPersonTransform.left;
    Vec3 Up        = GameRenderer->Singleton()->m_viewParams.firstPersonTransform.up;
    
    the function itself
    Code:
    BOOL Rotation() // Fragger aka dudeinberlin
    {
        float flYaw    ,flPitch,flRoll;
        //TargetArray is the final target vector, this will differ for your hack. i store my targetvecs in an array, hence i can call this rotation function without any params.
        Vec3 dt = TargetArray() - Origin;
        
        if(MyPlayer->isInVehicle())
        {
        //don't forget to norm the delta for the coming calculations
                dt.normalize();
            flYaw   = Left.AimFloat(dt,GameRenderer->Singleton()->m_viewParams.view.m_fovX / 2.0f);
            flPitch = Up.AimFloat(dt,GameRenderer->Singleton()->m_viewParams.view.m_fovX / 2.0f);    
            flRoll  = flYaw;
            //ya ya, how to know if your a jet or heli? search the ucforum
            //flVehicleSens is dynamic in my hack. best Results with a very low sens of 8.0 or lower
            if(bImaJet||bImAHeli)
                flInputAction[ConceptPitch] = -flPitch * flVehicleSens;
            else
                flInputAction[ConceptPitch] = flPitch * flVehicleSens;
            flInputAction[ConceptYaw]    = flYaw    * flVehicleSens;    
            flInputAction[ConceptRoll]  = flRoll* flVehicleSens;
            
            if(bFire)
                AutoFireLogic();
            return TRUE;
        }
        else
        {
            //tada you should know this.
        }
        return FALSE;
    ;
    

  7. #6
    Cops's Avatar
    Join Date
    Dec 2013
    Gender
    male
    Posts
    71
    Reputation
    10
    Thanks
    1
    My Mood
    Happy
    If you learn C++ you will know how to do this!!

Similar Threads

  1. [Source Code] Vehicle Aimbot (Jet,Heli)Source Code
    By Masterycon in forum Battlefield 3 (BF3) Hacks & Cheats
    Replies: 20
    Last Post: 11-30-2013, 10:40 AM
  2. [Outdated] [11-11-13]Bananegel D3D Free VIP! ESP|Aimbot|Artillery|User|AutoMedic|Vehicle Etc.
    By bananegel1 in forum WarRock - International Hacks
    Replies: 16
    Last Post: 11-13-2013, 06:52 AM
  3. [Outdated] [3-11-13]Bananegel D3D Free VIP! ESP|Aimbot|Artillery|User|AutoMedic|Vehicle Etc.
    By bananegel1 in forum WarRock - International Hacks
    Replies: 13
    Last Post: 11-08-2013, 10:44 AM
  4. vehicle aimbot?
    By ThePixelJunk in forum Battlefield 3 Help
    Replies: 6
    Last Post: 08-24-2013, 11:03 AM
  5. [Request] Vehicles aimbot
    By vickfbi in forum Battlefield 3 (BF3) Hacks & Cheats
    Replies: 19
    Last Post: 06-29-2013, 12:01 PM