Welcome to the UnKnoWnCheaTs - Multiplayer Game Hacks and Cheats.
You have to register before you can post and access any of the advanced forum features, please click the register link to proceed to the registration form. To start viewing threads or posts, select a forum that you want to visit from the selection below.
UPDATE 1b:
hopefully fixed not getting a bf3 window handle on some special bf3 versions using EnumWindows() instead of FindWindow()
UPDATE 1a: i did a quick update to 1a. not using GetAsyncKeyState anymore so it should fix the keypress problems.
also added a radar and made a name esp toggle
more info:
1a readme
Code:
bf3ext v1a - battlefield 3 passive esp
-------------------------------------
changelog:
----------
- added radar
- fixed keypress bugs
features:
---------
- punkbuster undetected 12/12/2011
- punkbuster clean screenshots
- fully external
- basic esp
- box
- healthbar
- player name
- distance
- crosshair
- radar
prerequisites:
--------------
- visual studio 2010 sp1 runtimes
- windows vista/7 x64 operating system
- aero/desktop composition enabled
- make sure battlefield 3 is configured to run in windowed mode (alt+enter while game is running)
how to use:
-----------
- start hack
- start battlefield 3
- have fun
hotkeys:
--------
- HOME - toggle FULLSCREEN
- INSERT - toggle name esp
- PAGE UP - increase radar range
- PAGE DOWN - decrease radar range
- greets batfitch - uc-forum.com
heyho guys.
finally got some free time to start a bf3 external hack
for the beginning basic esp only but it will probably look like bc2ext in the end.
will add more stuff later.
IMPORTANT: this is for x64 operating systems only
EDIT: (for the guys who don't know about external hacks) punkbuster screenshots are clean of course.
Code:
bf3ext v1 - battlefield 3 passive esp
-------------------------------------
features:
---------
- punkbuster clean screenshots
- fully external
- basic esp
- box
- healthbar
- player name
- distance
- crosshair
prerequisites:
--------------
- visual studio 2010 sp1 runtimes
- windows vista/7 x64 operating system
- aero/desktop composition enabled
- make sure battlefield 3 is configured to run in windowed mode (alt+enter while game is running)
how to use:
-----------
- start hack
- start battlefield 3
- press HOME key to toggle FULLSCREEN mode
- have fun
- greets batfitch - uc-forum.com
download Version 1 x64 *pb detected* download Version 1a x64 *pb detected* download Version 1b x64 *pb detected* download Version 1.2 BETA x32, x64 *NEWEST* [UNDETECTED]
have fun
Last edited by Hanoi22; 02-08-2012 at 06:48 PM.
Reason: update!
__________________
I'm like a virus, you can delete me but I am never really gone.
Links die, searching does not. (Fravia : searchlores.org)
Solving problems requires effort not a college degree.
__________________ Col. Hans Landa: [giddy] Oooh, that's a bingo! Col. Hans Landa: Is that the way you say it? "That's a bingo?" Lt. Aldo Raine: You just say "bingo". Col. Hans Landa: Bingo! How fun! But, I digress. Where were we?
----------------------------------------------------------------------- Mr. Pink: Why am I Mr. Pink ? Joe: Because you're a faggot, alright ?
----------------------------------------------------------------------- Dr. Peter Venkman: We came, we saw, we kicked its ass!
----------------------------------------------------------------------- The Joker: Wanna know how I got these scars? My father was... a drinker. And a fiend. And one night he goes off crazier than usual. Mommy gets the kitchen knife to defend herself. He doesn't like that. Not-one-bit. So - me watching - he takes the knife to her, laughing while he does it! Turns to me, and he says, "why so serious, son?" Comes at me with the knife... "Why so serious?" He sticks the blade in my mouth... "Let's put a smile on that face!" And... The Joker: Why so serious?
-----------------------------------------------------------------------
Quote:
Originally Posted by Old_Timer da c&per
COME ON MODERATORS WHERE ARE YOU... THIS GUY IS A JOKE...
Home key never worked when i tried the cheat. I also tried the other 5 keys around it but nothing ( Incase layout was different )
Try it in windowed mode
__________________
I'm like a virus, you can delete me but I am never really gone.
Links die, searching does not. (Fravia : searchlores.org)
Solving problems requires effort not a college degree.
all i do is using GetAsyncKeyState(VK_HOME) to detect the keypress.
i made another process that listens for the key in a deadlock
Code:
while(TRUE)
{
GetAsyncKeyState(VK_HOME);
}
it resets the state of the key before bf3ext can check it. hence nothing happens when the key is pressed.
so you maybe have any other apps running that use GetAsyncKeyState() on VK_HOME to detect a keypress ? may try to close some other processes and check again
all i do is using GetAsyncKeyState(VK_HOME) to detect the keypress.
i made another process that listens for the key in a deadlock
Code:
while(TRUE)
{
GetAsyncKeyState(VK_HOME);
}
it resets the state of the key before bf3ext can check it. hence nothing happens when the key is pressed.
so you maybe have any other apps running that use GetAsyncKeyState() on VK_HOME to detect a keypress ? may try to close some other processes and check again
Your "HOME" bind has always been working for me, but not in BF3.