Page 1 of 2 12 LastLast
Results 1 to 15 of 17
  1. #1
    monster255's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Posts
    53
    Reputation
    13
    Thanks
    8
    My Mood
    Amused

    Red face BF3 source codes( Made by LittleToad)

    (It's my first post and I hope it apllies to every rule if not then please notify me ill delete this post or everything in it.)

    So, because LittleToad lost all his BF3 accounts(2), He decided to release all his stuff he made.
    Everything is working and up to date (if you have the right offsets)

    NoRecoil
    Code:
    Code:
    fb::WeaponSway* pWps = pMySoldier->getWeaponSway();
    if (!POINTERCHK(pWps)) return;
    pWps->m_currentRecoilDeviation.m_pitch = 0.0f;
    pWps->m_currentRecoilDeviation.m_yaw = 0.0f;
    pWps->m_currentRecoilDeviation.m_roll = 0.0f;
    pWps->m_currentRecoilDeviation.m_transY = 0.0f;
    
    pWps->m_dispersionAngle = 0.0f;
    pWps->m_DeviationPitch = 0.0f;
    
    pWps->m_currentGameplayDeviationScaleFactor = 0.00001f;
    pWps->m_currentVisualDeviationScaleFactor = 0.00001f;
    
    pWps->m_randomAngle = 0.00001f;
    pWps->m_randomRadius = 0.00001f;
    NoScopeSway
    Code:
    Code:
    fb::ClientSoldierWeaponsComponent::ClientWeaponSwayCallbackImpl *pCWSCI = pMySoldier->m_soldierWeaponsComponent->m_weaponSwayCallback;
    if (POINTERCHK(pCWSCI)) {
    	if (pCWSCI->m_isZooming) {
    		fb::SoldierAimingSimulationData *pSASD = pMySoldier->GetCSW()->m_authorativeAiming->m_data;
    		if (POINTERCHK(pSASD)) {
    			pSASD->m_zoomLevels.At(0)->m_swayPitchMultiplier = 0.0f;
    			pSASD->m_zoomLevels.At(0)->m_swayYawMultiplier = 0.0f;
    			pSASD->m_zoomLevels.At(0)->m_dispersionMultiplier = 0.0f;
    			pSASD->m_zoomLevels.At(0)->m_recoilMultiplier = 0.0f;
    			pSASD->m_zoomLevels.At(0)->m_recoilFovMultiplier = 0.0f;
    			
    			if (pMySoldier->GetCSW()->m_authorativeAiming->m_zoomLevel > 0) {
    				pSASD->m_zoomLevels.At(1)->m_swayPitchMultiplier = 0.0f;
    				pSASD->m_zoomLevels.At(1)->m_swayYawMultiplier = 0.0f;
    				pSASD->m_zoomLevels.At(1)->m_dispersionMultiplier = 0.0f;
    				pSASD->m_zoomLevels.At(1)->m_recoilMultiplier = 0.0f;
    				pSASD->m_zoomLevels.At(1)->m_recoilFovMultiplier = 0.0f;
    			}
    			
    			if (pCWSCI->m_isSupported) {
    				pSASD->m_zoomLevels.At(0)->m_supportedSwayPitchMultiplier = 0.0f;
    				pSASD->m_zoomLevels.At(0)->m_supportedSwayYawMultiplier = 0.0f;
    				
    				if (pMySoldier->GetCSW()->m_authorativeAiming->m_zoomLevel > 0) {
    					pSASD->m_zoomLevels.At(1)->m_supportedSwayPitchMultiplier = 0.0f;
    					pSASD->m_zoomLevels.At(1)->m_supportedSwayYawMultiplier = 0.0f;
    				}
    			}
    		}
    	}
    }
    NoBreath
    Code:
    Code:
    fb::ClientSoldierEntity::BreathControlHandler* pBreath = pMySoldier->m_breathControlHandler;
    if (!POINTERCHK(pBreath)) return;
    
    pBreath->m_breathControlMultiplier = 0;
    pBreath->m_breathControlTimer = 0;
    pBreath->m_breathControlPenaltyTimer = 0;
    pBreath->m_breathControlPenaltyMultiplier = 0;
    InstantKill
    Code:
    Code:
    fb::FiringFunctionData* pFFD = pMySoldier->getCurrentWeaponFiringData()->m_primaryFire;
    if (!POINTERCHK(pFFD)) return;
    
    fb::BulletEntityData* pBED = pFFD->m_shot.m_projectileData;
    if (!POINTERCHK(pBED)) return;
    
    pBED->m_startDamage = 9999.0f;
    pBED->m_endDamage = 9999.0f;
    pBED->m_damageFalloffStartDistance = 0.0001f;
    pBED->m_damageFalloffEndDistance = 0.0001f;
    InstantBullet
    Code:
    Code:
    fb::FiringFunctionData* pFFD = pMySoldier->getCurrentWeaponFiringData()->m_primaryFire;
    if (!POINTERCHK(pFFD)) return;
    
    fb::BulletEntityData* pBED = pFFD->m_shot.m_projectileData;
    if (!POINTERCHK(pBED)) return;
    
    pFFD->m_shot.m_initialSpeed.z = 9999.0f;
    pBED->m_instantHit = true;
    pBED->m_timeToLive = 1.0f;
    pBED->m_gravity = 0.0f;
    Vehicle Modifications
    If you want to have a above things also in a vehicle the only thing you have to do is to get the vehicle weapon
    Code:
    Code:
    pLocalPlayer->getEntry()->m_weapons.at(pLocalPlayer->getEntry()->getActiveStance());
    And now just do the things like above... Example:
    VehicleNoRecoil
    Code:
    Code:
    fb::WeaponSway* pWps = pLocalPlayer->getEntry()->m_weapons.at(pLocalPlayer->getEntry()->getActiveStance())->m_info->weaponFiring()->m_weaponSway;
    if (!POINTERCHK(pWps)) return;
    
    pWps->m_currentRecoilDeviation.m_pitch = 0.0f;
    pWps->m_currentRecoilDeviation.m_yaw = 0.0f;
    pWps->m_currentRecoilDeviation.m_roll = 0.0f;
    pWps->m_currentRecoilDeviation.m_transY = 0.0f;
    
    pWps->m_dispersionAngle = 0.0f;
    pWps->m_DeviationPitch = 0.0f;
    
    pWps->m_currentGameplayDeviationScaleFactor = 0.00001f;
    pWps->m_currentVisualDeviationScaleFactor = 0.00001f;
    
    pWps->m_randomAngle = 0.00001f;
    pWps->m_randomRadius = 0.00001f;
    MagicBullets
    Add this to your player iteration (only the enemy is needed).

    Code:
    Code:
    fb::ClientWeapon* clWeapon = localsoldier->m_soldierWeaponsComponent->m_currentAnimatedWeaponHandler->m_currentAnimatedWeapon->m_weapon;
    GIVEDAMAGE = 0x00770F40;
    
    __asm
    {
    	push ecx
    		mov ecx, clWeapon
    		push soldier
    		call GIVEDAMAGE
    		pop ecx
    }
    This also works for vehicle. Instead of saving the ClientWeapon, you save is:
    Code:
    fb::Weapon* weapon = pLocalPlayer->getEntry()->m_weapons.at(pLocalPlayer->getEntry()->getActiveStance())->m_info->weapon();
    WeaponExchange
    You got killed by a knife (or what ever), but you got shooted? So here it is

    First, save your current ClientWeapon
    Code:
    Code:
    fb::ClientWeapon* clWeapon = localsoldier->m_soldierWeaponsComponent->m_currentAnimatedWeaponHandler->m_currentAnimatedWeapon->m_weapon;
    Then you have to change the modifier of your weapon (clWeapon).
    Example
    Code:
    Code:
    clWeapon->m_modifier = localsoldier->m_soldierWeaponsComponent->m_weapons.at(4)->m_weapon->m_modifier;
    Now just do this
    Code:
    Code:
    DWORD GIVEDAMAGE = 0x00770F40;
    
    __asm
    {
    	push ecx
    		mov ecx, clWeapon
    		push soldier
    		call GIVEDAMAGE
    		pop ecx
    }
    Now you are killing everyone with supply box

    Oh and if you want to spawn on your squad mates (even it's disabled), just add this on your player iteration (your team is needed)
    Code:
    Code:
    pClientPlayer->m_isAllowedToSpawnOn = true;
    Credits to: LittleToad

  2. The Following 2 Users Say Thank You to monster255 For This Useful Post:

    DadDelta (11-15-2014),THE MOB (04-23-2015)

  3. #2
    biancods's Avatar
    Join Date
    Aug 2014
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    how to use code source ??? plz

  4. #3
    Mayion's Avatar
    Join Date
    Oct 2012
    Gender
    male
    Location
    Bed
    Posts
    13,504
    Reputation
    4018
    Thanks
    8,372
    My Mood
    Twisted
    Quote Originally Posted by biancods View Post
    how to use code source ??? plz
    You need to learn C++, it's a programming language.
    Search on Youtube or Google for tutorials.
    I do not use any type of messenger outside of MPGH.
    Inactive but you can reach me through VM/PM.










     

    Donator - 30 August 2013
    Battlefield Minion - 26 October 2013

    Blackshot Minion - 14 January 2014/16 September 2014
    Minecraft Minion - 7 February 2014/16 September 2014
    WarRock Minion - 23 February 2014
    League of Legends Minion - 21 March 2014

    Minion+ - 15 May 2014
    Other Semi-Popular First Person Shooter Minion - 8 August 2014
    CrossFire Minion - 23 October 2014
    Programming Section Minion - 13 November 2014
    Marketplace Minion - 7 December 2014

    Official Middleman - 7 December 2014 - 27 June 2015
    Moderator - 29 December 2014
    Project Blackout Minion - 10 January 2015
    News Force Interviewer - January 2015
    Steam Games Minion - 21 March 2015
    Dragon Nest Minion - 31 March 2015
    Publicist - April 2015 - 21 September 2015
    Global Moderator - 25 August 2015
    Super User - 13 August 2016



  5. #4
    biancods's Avatar
    Join Date
    Aug 2014
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    Ok tnx bro =)

  6. #5
    awtstalamaker's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Posts
    130
    Reputation
    10
    Thanks
    54
    My Mood
    Blah
    if anybody can teach me how to make my dllmain and the process hook, i would be happy
    FUCK THOSE VOUCH 2 VOUCH, THEY ARE ALL FAKE AND GAY

    Code:
    Its like asking a friend to like your pic in exchange for liking his pic back. which is very FAKE |  Or 2 dudes sucking each other, Which is GAY

  7. #6
    MicroPenguin's Avatar
    Join Date
    Jul 2014
    Gender
    male
    Posts
    43
    Reputation
    10
    Thanks
    475
    Thanks man!

  8. #7
    Hack_AdminV's Avatar
    Join Date
    Jan 2012
    Gender
    male
    Posts
    78
    Reputation
    10
    Thanks
    3
    My Mood
    Happy
    thx alot, do you have wallhack source code? im trying to make a wallhack+ no recoil only hack ^^

  9. #8
    kari0602pl's Avatar
    Join Date
    Nov 2014
    Gender
    male
    Posts
    0
    Reputation
    10
    Thanks
    0
    how to use please

  10. #9
    kari0602pl's Avatar
    Join Date
    Nov 2014
    Gender
    male
    Posts
    0
    Reputation
    10
    Thanks
    0
    please help

    - - - Updated - - -

    how to use

  11. #10
    mrguggy11's Avatar
    Join Date
    Apr 2014
    Gender
    male
    Posts
    30
    Reputation
    10
    Thanks
    2
    My Mood
    Amused
    SEARCH GOOGLE ON HOW TO COMPILE A C++ CODE.

    - - - Updated - - -

    Also, I get this Error when trying to build NoRecoil.dll
    "error C2040: 'pWps' : 'int' differs in levels of indirection from 'int *'"

  12. #11
    Regioner's Avatar
    Join Date
    Dec 2014
    Gender
    female
    Posts
    57
    Reputation
    10
    Thanks
    1,402
    My Mood
    Bored
    Is this C++ ? It seems that it is?

  13. #12
    Desolat0r's Avatar
    Join Date
    Apr 2015
    Gender
    female
    Location
    Canada
    Posts
    6
    Reputation
    10
    Thanks
    3
    My Mood
    Angelic
    how do i use this sorry,

  14. #13
    Qw1Kkb3an85's Avatar
    Join Date
    Feb 2015
    Gender
    male
    Posts
    59
    Reputation
    10
    Thanks
    9
    My Mood
    Aggressive
    thanks bro
    wink wink nudge nudge NUDES PLEASE <-- hidden text c:


  15. #14
    thesauceman's Avatar
    Join Date
    Mar 2015
    Gender
    male
    Posts
    27
    Reputation
    10
    Thanks
    0
    does it still work and can someone teach me how to use it

  16. #15
    badcat1944's Avatar
    Join Date
    Feb 2013
    Gender
    male
    Posts
    10
    Reputation
    10
    Thanks
    0
    Thanks for the source!

Page 1 of 2 12 LastLast

Similar Threads

  1. [Release/Source Code]Some API's made Easier
    By 'Bruno in forum C++/C Programming
    Replies: 5
    Last Post: 08-24-2010, 10:18 AM
  2. Stamina Hack and source code ?
    By Teh Sasuke in forum C++/C Programming
    Replies: 0
    Last Post: 12-31-2007, 05:08 PM
  3. [Release] ****** DLL Source Code
    By OneWhoSighs in forum WarRock - International Hacks
    Replies: 20
    Last Post: 10-25-2007, 07:41 AM
  4. keylogger source code
    By obsedianpk in forum WarRock - International Hacks
    Replies: 8
    Last Post: 10-24-2007, 02:31 PM
  5. HALO 2 (XBOX) Source Code
    By mirelesmichael in forum General Game Hacking
    Replies: 12
    Last Post: 09-23-2006, 04:35 AM

Tags for this Thread