PDA

View Full Version : req teleport



relatwister
03-21-2008, 05:06 PM
heey i'm making a hack but i want teleport in it how do i make it without dll
grtzz relatwister

srry for my bad english iam dutch:peace******

ganglyman21
04-11-2008, 06:29 AM
Wrote my own function for it but it's possible with WritePointerFloat.


void WritePointerFloat(long addy, short offset, float value)
{
long maddy;
long saddy;
memory();
ReadProcessMemory(hProcess, (LPVOID*)(DWORD) addy, &maddy, sizeof(maddy), NULL);
saddy = maddy + offset;
WriteProcessMemory(hProcess, (LPVOID*)(DWORD) saddy, &value, sizeof(value), NULL);
}

and then something like


WritePointerFloat(0xAddy, 0xOffset, Value)

need 1 line for each offset for the x,y,z. Hope this helped.

relatwister
04-11-2008, 08:32 AM
Wrote my own function for it but it's possible with WritePointerFloat.


void WritePointerFloat(long addy, short offset, float value)
{
long maddy;
long saddy;
memory();
ReadProcessMemory(hProcess, (LPVOID*)(DWORD) addy, &maddy, sizeof(maddy), NULL);
saddy = maddy + offset;
WriteProcessMemory(hProcess, (LPVOID*)(DWORD) saddy, &value, sizeof(value), NULL);
}

and then something like


WritePointerFloat(0xAddy, 0xOffset, Value)

need 1 line for each offset for the x,y,z. Hope this helped.

thankyou but how do you make it so that you can save the place where you are and then teleport to that place if you hit a button or someting

ganglyman21
04-11-2008, 07:07 PM
Well, assume you mean re spawn where you die? I've honestly no idea if this is even possible. You would need to "ReadProcessMemory" which could display your current location, then you could use edit boxes? Beyond that I don't even know if what I think you mean is possible.