Log in

View Full Version : BF3 ammo trainer + CE table added by distiny



jgreen5556
October 6th, 2011, 09:35 PM
Credits to Distiny for finding freezing ammo works. I have made a c++ trainer for freezing your ammo in BF3 for people who don't know how to do it. Try it out and tell me if it works for you. I find that if you hold fire in too long of bursts it runs out and you reload. If you keep Shortish bursts it won't run out. My GUI is kind of bland but im new to making those.


link - http://www.mediafire.com/?nod698v68ujxia8




********** BEWARE **********

Caspian border maps have PB enabled and will track and ban for Cheat Engine ! don't use it on those maps !

Tellz
October 6th, 2011, 09:45 PM
ill test it :-)

ah Great WORK but some probs

edit2: Instant reload when i die and new map load or chance the class. :D

xDP
October 6th, 2011, 09:46 PM
File is clean, i can vouch for this.
(malware expert here)

jgreen5556
October 6th, 2011, 09:52 PM
Oh so it has some problems :(

Hellracer
October 6th, 2011, 10:32 PM
it has bugs, after u die, u cant shoot anymore bc it only reloads ^^

jgreen5556
October 6th, 2011, 10:37 PM
ok this one should work but you still can't fire too fast or it will run out. http://www.mediafire.com/?n6p9kpp170senx2

distiny
October 6th, 2011, 11:25 PM
Cheat table for unlimited ammo (Cheat engine 6.x)

attach to BF3.exe
File-> load this file
freeze value
Ur pro.

bf3ammo.rar (http://shop.x22cheats.com/attachment.php?attachmentid=1737&stc=1&d=1317936234)

Hellracer
October 7th, 2011, 10:25 AM
ok this one should work but you still can't fire too fast or it will run out. http://www.mediafire.com/?n6p9kpp170senx2

tested it for the community again, and it also dont work, u shouldnt release something before u tested it yourself...

distiny
October 7th, 2011, 01:21 PM
********** BEWARE **********

Caspian border maps have PB enabled and will track and ban for Cheat Engine ! don't use it on those maps !

sally
October 7th, 2011, 04:28 PM
it's dont work. ammo still ends. even if the shoot bursts

CORE-T
October 7th, 2011, 04:54 PM
********** BEWARE **********

Caspian border maps have PB enabled and will track and ban for Cheat Engine ! don't use it on those maps !
odd that they only enable PB on one map :D

Hellracer
October 7th, 2011, 05:19 PM
odd that they only enable PB on one map :D

it isnt active, maybe they did something wrong since it looks as pb is off again.

CORE-T
October 7th, 2011, 05:40 PM
it isnt active, maybe they did something wrong since it looks as pb is off again.

its possible, when i played today it lag like crazy ill have to wait a few hours i bet
someone ingame said that they are stress testing it or some shiit ^^

theone
October 7th, 2011, 05:43 PM
Ehm some servers have it on, some don't.
You can see it in the server browser...

jgreen5556
October 7th, 2011, 09:10 PM
Im trying to make this into a .dll and i have a way to turn it on and off again which would fix the 0 ammo from happening. but its not working. im not sure what has to go into dllmain.cpp. And i don't know if it has to be in a separate source file or not.
My code is
#include <windows.h>
#include <stdio.h>
#include <iostream>
#include <conio.h>
#include <string>
#include <fstream>
#include <float.h>
using namespace std;

DWORD WINAPI RunLoop( LPVOID lpParam )
{

BYTE AmmoOn[] = {0x01, 0x43, 0xEF};
BYTE AmmoOff[] = {0x01, 0x43, 0x18};
DWORD dwAddress = 0xFC6088;
bool AmmoLocked = false;

while(1)
{

if (GetAsyncKeyState(VK_F1)&0x80000)
{

DWORD dwOldProtection;

VirtualProtect((void*) (dwAddress), 3, PAGE_EXECUTE_READWRITE, &dwOldProtection);

if (AmmoLocked)
memcpy( (void*)dwAddress, &AmmoOff, 3);
else
memcpy( (void*)dwAddress, &AmmoOn, 3);

VirtualProtect((void*) (dwAddress), 3, dwOldProtection, NULL);

AmmoLocked = !AmmoLocked;

}

Sleep(200);

}

return S_OK;

}

BOOL APIENTRY DllMain( HMODULE hModule,
DWORD ul_reason_for_call,
LPVOID lpReserved )
{

switch (ul_reason_for_call)
{
case DLL_PROCESS_ATTACH:
DisableThreadLibraryCalls(hModule);
CreateThread(0,0,&RunLoop,0,0,0);
break;
case DLL_THREAD_ATTACH:
case DLL_THREAD_DETACH:
case DLL_PROCESS_DETACH:
break;
}

return TRUE;

}

superman4real
October 8th, 2011, 05:23 AM
i am kinda late
but i am here to download hehehe