? Void List ?

Posts 16 of 6 · Page 1 of 1
? Void List ?
Someone have a Void List ? My hack is Already complete. I need a Void List.
I have all Addys but some Void but not all.

With The Void, I'm able to do a VIP Hack and I have a Public Hack To be release if all work need 2 or 3 more feature

Thanks all
Please I need a C++ Cr4ck :P A Guy really know what he do. Please Help me :P. I found a Bypass But :P I don't know if I have the good addy and if they can be detected. I need a feet back.

Thx MPGH without this community I can do nothing :P
Could you elaborate a bit? What is a "void list"?
For me This is a Void :

Code:
void Jump() // superjump if hit control button
{
if(GetAsyncKeyState(VK_LCONTROL) &1)
{
DWORD dwPlayerPtr = *(DWORD*)Playerpointer;
if(dwPlayerPtr != 0)
{
*(float*)(dwPlayerPtr+OFS_Z) = 500;
}
}
}
But I need someone is very good to code C++ because My hack need to be Verify
Those are called functions. When you see void behind a function it means the function returns a null value.

If you see a fucntion that starts with "int" i will return an integer value, eg:

Code:
int sum(int a,int b){

return a+b;
}
main(){
int total=sum(5,6);
}
Same with float (decimal) :

Code:
float average(int a,int b){

return (a+b)/2;
}

main(){
float aver=average(5,6);
}
Void

Code:
void superjump(){
z=2000;
}
main(){
int a=superjump();   //null value i think

}
Hope this clear things up.
Okay thank you, Because I don't really the exact Name, I start Coding since 5 Days :x :P
Posts 16 of 6 · Page 1 of 1
This thread is closed for replies.

Similar Threads

Tags for this Thread

Need help?