
Originally Posted by
i luffs yeww
Wait, what?
Read address 00000000 error is due to calling a pointer to an address when the pointer doesnt exist..
its like this:
Code:
int x;
int y;
int main()
{
x == *p; //de-reference
y == &p //pointer p
return 0;
}
U see that?? p isnt declared anywhere but yet Im trying to use the information it points to aka nothing!.. even if I do declare pointer p and I declare it as a NULL pointer and then FREE IT, and I decide to call it, I will get that error.. Basically there is no way for Home to use that plugin unless he fixes it himself or freddy fixes it.
IIRC, Jagex had this bullshit last week with the dungeoneering skill where they were calling pointers that didnt exist and when you went to the adventure log, it showed: "I have just leveled to 80 dungeoneering", "I have killed null null null null"..
That was the reason for the system update which fixed that.
check it out:
http://stackoverflow.com/questions/2...dress-00000000