- Sponsored Advertisement -
Welcome to the UnKnoWnCheaTs - Multiplayer Game Hacks and Cheats.
You have to register before you can post and see 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.
Battlefield 2 hacks cheats tutorials source code
You are Unregistered, please register to gain Full access.
Pointer help
04-07-2010, 06:14 PM
#1 Join Date: Feb 2010
Posts: 68
Reputation: -872 Rep Power: 0
Pointer help
The addresses for BF2 change whenever the player dies, and I need help getting the pointer for the address. I thought I got the pointer once, but when I died, it seemed to change again. How do I correctly get the pointer?
GameLover is offline
04-07-2010, 06:17 PM
#2 retired moderator
Join Date: Nov 2007
Location: London
Posts: 1,360
Reputation: 10674 Rep Power: 185
Use the games classes, then you can just grab it whenever you want.
__________________
Regards and happy
Josh
__________________
JoshRose is offline
04-07-2010, 06:21 PM
#3
Threadstarter Join Date: Feb 2010
Posts: 68
Reputation: -872 Rep Power: 0
Quote:
Originally Posted by
JoshRose Use the games classes, then you can just grab it whenever you want.
How would I do that?
GameLover is offline
04-07-2010, 06:31 PM
#4 Supreme H4x0|2 Join Date: Feb 2010
Location: Chattanooga, TN
Posts: 654
Reputation: 36845 Rep Power: 406
Search around on the forums you can find them, or you can reverse them yourself.
Crucial is online now
04-14-2010, 11:03 PM
#5
Threadstarter Join Date: Feb 2010
Posts: 68
Reputation: -872 Rep Power: 0
Quote:
Originally Posted by
Crucial Search around on the forums you can find them, or you can reverse them yourself.
I cant seem to find it :/
GameLover is offline
04-14-2010, 11:16 PM
#6 Supreme H4x0|2 Join Date: Feb 2010
Location: Chattanooga, TN
Posts: 654
Reputation: 36845 Rep Power: 406
Crucial is online now
04-16-2010, 12:21 AM
#7
Threadstarter Join Date: Feb 2010
Posts: 68
Reputation: -872 Rep Power: 0
Quote:
Originally Posted by
Crucial
How would I get the pointer/address from the Game's Classes?
GameLover is offline
04-16-2010, 01:07 AM
#8 Join Date: Jan 2008
Posts: 1,227
Reputation: 46028 Rep Power: 534
Quote:
Originally Posted by
GameLover How would I get the pointer/address from the Game's Classes?
PHP Code:
// v1.50 #define BF2_CLASSMANAGER 0x009FF960 while(! g_pClassManager ) { g_pClassManager = *( CClassManager **) BF2_CLASSMANAGER ; Sleep ( 250 ); }
is how i do it
you should really take a look at patricks base on game-deception it has everything!
smoochy is online now
04-16-2010, 01:21 AM
#9 « Forum Admin »
Join Date: Nov 2004
Posts: 3,156
Reputation: 85662 Rep Power: 1007
Quote:
Originally Posted by
GameLover How would I get the pointer/address from the Game's Classes?
Which class are you trying to get the pointer for?
In any case you can use classmanager to obtain the pointer to the class, like smoochy said.
Winslow is online now
04-17-2010, 02:35 AM
#10
Threadstarter Join Date: Feb 2010
Posts: 68
Reputation: -872 Rep Power: 0
Quote:
Originally Posted by
Winslow Which class are you trying to get the pointer for?
In any case you can use classmanager to obtain the pointer to the class, like smoochy said.
Im trying to get a Pointer for Weapons.
Quote:
Originally Posted by
smoochy PHP Code:
// v1.50 #define BF2_CLASSMANAGER 0x009FF960 while(! g_pClassManager ) { g_pClassManager = *( CClassManager **) BF2_CLASSMANAGER ; Sleep ( 250 ); }
is how i do it
you should really take a look at patricks base on game-deception it has everything!
What if Im using a different BF2 Version? How would I get the "Classmanager" address?
GameLover is offline
04-17-2010, 02:40 AM
#11 Supreme H4x0|2 Join Date: Feb 2010
Location: Chattanooga, TN
Posts: 654
Reputation: 36845 Rep Power: 406
Crucial is online now
04-17-2010, 02:43 AM
#12 retired moderator
Join Date: Nov 2007
Location: London
Posts: 1,360
Reputation: 10674 Rep Power: 185
Seriously man, you need to do some work of your own. Every question you have asked in this tread can be answered from looking at the BF:Series forums, you barely need to do any searching, just reading.
__________________
Regards and happy
Josh
__________________
JoshRose is offline
04-21-2010, 03:22 AM
#13
Threadstarter Join Date: Feb 2010
Posts: 68
Reputation: -872 Rep Power: 0
Quote:
Originally Posted by
Crucial
I dont understand how that would actually "get" the Address I'm looking for.
edit: would I need to do something like
Code:
FindPattern(OldWeaponAddress Here, ???, ???, ??? ) If yes, what do I put in place of ???
GameLover is offline
04-21-2010, 08:44 AM
#14 UC Contributor
Join Date: Sep 2009
Location: Netherlands
Posts: 730
Reputation: 18059 Rep Power: 223
Quote:
Originally Posted by
GameLover I dont understand how that would actually "get" the Address I'm looking for.
edit: would I need to do something like
Code:
FindPattern(OldWeaponAddress Here, ???, ???, ??? ) If yes, what do I put in place of ???
you jsut call the function getBFClassManager(); because that will return the ClassManager address
So use it like this:
Code:
CClassManager* pClassManager = getBFClassManager(); Next time try to do some things on your own, because this is really basic stuff and explained over and over here in the forums!
__________________ Proud to be a hacker! Programming languages I know: PHP, Javascript, XHTML, Flash Actionscript, c++
Also good at: MYSQL/Oracle databases, ERD, SQL-injection and XSS
Games I hack: Battlefield Heroes, Face of Mankind and Call of Duty MW2
Freaky123 is offline
04-21-2010, 10:39 PM
#15
Threadstarter Join Date: Feb 2010
Posts: 68
Reputation: -872 Rep Power: 0
Quote:
Originally Posted by
Freaky123 you jsut call the function getBFClassManager(); because that will return the ClassManager address
So use it like this:
Code:
CClassManager* pClassManager = getBFClassManager(); Next time try to do some things on your own, because this is really basic stuff and explained over and over here in the forums!
But how about would that get the Weapon Address?
GameLover is offline
04-21-2010, 10:49 PM
#16 retired moderator
Join Date: Nov 2007
Location: London
Posts: 1,360
Reputation: 10674 Rep Power: 185
Quote:
Originally Posted by
GameLover But how about would that get the Weapon Address?
You need to go and do some learning, all of this information is on this site, please stop begging for help.
~ Closed ~
__________________
Regards and happy
Josh
__________________
JoshRose is offline
Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
All times are GMT +1. The time now is 04:47 PM .