Register for your free account! | Forgot your password?

Go Back   elitepvpers > Coders Den > General Coding
You last visited: Today at 03:50

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



Pointer question

Discussion on Pointer question within the General Coding forum part of the Coders Den category.

Reply
 
Old   #1
 
warriorchamp's Avatar
 
elite*gold: 0
Join Date: May 2007
Posts: 171
Received Thanks: 41
Pointer question

If i have an address (ex. 0x00419a94) how can i know to what address points? Can anyone tell me?
warriorchamp is offline  
Old 05/08/2008, 00:41   #2
 
elite*gold: 20
Join Date: Sep 2006
Posts: 1,100
Received Thanks: 184
Well, at first you should know that a pointer is an integer, the value of this int is the value of the adress it points to.
The only differnce between a "normal int" value and a pointer is the way they are read by a programm.
In c++ you can easily create a pointer to variable:
Code:
void main()
{
    char [] abc={a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z};
    int pointer=&abc; //this is a pointer to abc it'll contain the adress of abc
    somemadeupFunctionThatTakesaPointer(*pointer);
    //well if you use pointer as a pointer you'll acess abc
    *pointer=c;
    //this line of code would write a c at the start of abc   
}
this code is just to get an idea of what pointers are, there are properbly mistakes in it and ofcourse it'll never compile ^^
Bot_interesierter is offline  
Reply


Similar Threads Similar Threads
Frage: Wie findet man zB UG Pointer?Speed pointer?
03/30/2010 - Kal Online - 2 Replies
kann mir einer sagen wie man UG/Speed pointer finden kann usw^^´ß#
[Question] Hp and Mana Pointer / Recv
10/22/2009 - Kal Online - 5 Replies
Hey could anyone tell me what's the hp pointer and mana pointer on private servers? If i search myself my PC crashes How can i see what's inside the Recv packets(what type/number) Thanks
[QUESTION] skill time/regen time pointer
12/10/2008 - Ace Online / AirRivals - 0 Replies
hi question is: how to change all skill timer/regen timer at once and static addresses in ayoris trainer there are boxes for it but i am using the EU version and there they do not work i also wrote into the RA root address topic that i can't find it for EU (i know how to get pointers and how to single edit skills/weapons/radar/etc) i already found some static addresses but they do not work ^^



All times are GMT +2. The time now is 03:50.


Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2024 elitepvpers All Rights Reserved.