|
You last visited: Today at 07:12
Advertisement
c++ Wolfteam pointer offset
Discussion on c++ Wolfteam pointer offset within the Wolfteam forum part of the Shooter category.
07/06/2015, 22:54
|
#1
|
elite*gold: 0
Join Date: Sep 2014
Posts: 2
Received Thanks: 0
|
c++ Wolfteam pointer offset
//removed
|
|
|
07/07/2015, 14:04
|
#2
|
elite*gold: 1337
Join Date: Apr 2013
Posts: 6,480
Received Thanks: 3,190
|
Method 1:
Function:
Quote:
VOID WritePointer(DWORD dwAddress, DWORD dwOffset, INT iValue)
{
DWORD dwBaseAddr = (DWORD)(dwAddress);
DWORD dwSetup1 = *(DWORD*)(dwBaseAddr);
DWORD dwOffset1 = (dwSetup1 + dwOffset);
DWORD *dwFunction = (DWORD*)dwOffset1;
*dwFunction = iValue;
}
|
Usage:
Quote:
|
WritePointer(CSH, 0x"Offset", 19601);
|
---------------------------------
Method 2:
Function:
Quote:
DWORD FindDmaAddy(int PointerLevel, DWORD Offsets[], DWORD BaseAddress)
{
DWORD Ptr = *(DWORD*)(BaseAddress);
if(Ptr == 0) return NULL;
for(int i = 0; i < PointerLevel; i ++)
{
if(i == PointerLevel-1)
{
Ptr = (DWORD)(Ptr+Offsets[i]);
if(Ptr == 0) return NULL;
return Ptr;
}
else
{
Ptr = *(DWORD*)(Ptr+Offsets[i]);
if(Ptr == 0) return NULL;
}
}
return Ptr;
}
|
Usage:
Quote:
DWORD Pointer;
DWORD Offset[] = {0x"Offset"};
Pointer = FindDmaAddy(1, Offset, CSH);
WriteProcessMemory(MemHandle, (LPVOID(Pointer)), &scan, 4, NULL);
|
|
|
|
07/07/2015, 16:56
|
#3
|
elite*gold: 156
Join Date: Feb 2015
Posts: 95
Received Thanks: 103
|
Jesus christ.
Use reinterpret_cast ....
|
|
|
07/07/2015, 17:47
|
#4
|
elite*gold: 5
Join Date: Nov 2014
Posts: 330
Received Thanks: 621
|
That should not even work , lol isn't that a CLI Version ?....a DLL That is .NET based :'D will not work with XIGNCODE .
|
|
|
07/07/2015, 19:45
|
#5
|
elite*gold: 40
Join Date: Mar 2013
Posts: 1,396
Received Thanks: 778
|
Quote:
Originally Posted by D4rkAdv3rs4ry
That should not even work , lol isn't that a CLI Version ?....a DLL That is .NET based :'D will not work with XIGNCODE .
|
Sure if u have real Bypass sind not some samdbox tools
|
|
|
07/07/2015, 20:05
|
#6
|
elite*gold: 156
Join Date: Feb 2015
Posts: 95
Received Thanks: 103
|
Quote:
Originally Posted by C0RE'
Sure if u have real Bypass sind not some samdbox tools
|
Method 1 will work perfectly fine.
However method 2 won't. WPM detected < XignCode
|
|
|
07/07/2015, 22:05
|
#7
|
elite*gold: 5
Join Date: Nov 2014
Posts: 330
Received Thanks: 621
|
Quote:
Originally Posted by C0RE'
Sure if u have real Bypass sind not some samdbox tools
|
Why do you have to reply on every single post made by me  ?
and if u are gonna start it , Talk about yourself failing & Stealing ppl's money , if you are mad , just say it.
[Psssst ,you still owe me 80 EU , The one you've stolen from me  ]
Please , just stop hatin , you know that i can do my hacks without sandboxie **** ,and i already have proofs , everyone knows it :'D but i am too lazy do it now , let's wait until it's patched then maybe i will go back to my C++ hack [ That Ayoub says it's 99% Leeched  ]
|
|
|
07/11/2015, 18:43
|
#8
|
elite*gold: 0
Join Date: Sep 2014
Posts: 2
Received Thanks: 0
|
hi friends, okey nice work but
1 offset -> nice work!!
WritePointer(CSH, 0x"Offset", 19601);
2 offset ??? -> don't work!!
WritePointer(CSH, 0x"Offset", 0x"Offset",19601);
3 offset??? -> don't work!!
WritePointer(CSH, 0x"Offset", 0x"Offset", 0x"Offset",19601);
How can I do 3 offset?
|
|
|
10/06/2017, 13:53
|
#9
|
elite*gold: 0
Join Date: Jan 2017
Posts: 4
Received Thanks: 0
|
Quote:
Originally Posted by M4L1F1C
Method 1 will work perfectly fine.
However method 2 won't. WPM detected < XignCode
|
and Meth1 work fine too for RPM< detected < XignCode
|
|
|
10/07/2017, 16:57
|
#10
|
elite*gold: 156
Join Date: Feb 2015
Posts: 95
Received Thanks: 103
|
Quote:
Originally Posted by yasserazmy
and Meth1 work fine too for RPM< detected < XignCode
|
Is your hack external or internal?
|
|
|
10/08/2017, 02:15
|
#11
|
elite*gold: 0
Join Date: Apr 2010
Posts: 459
Received Thanks: 130
|
good stuff, I do more directly like that:
*(short*)(*(DWORD*)(Adress)+Offset) = 19601;
|
|
|
10/10/2017, 20:58
|
#12
|
elite*gold: 0
Join Date: Jan 2017
Posts: 4
Received Thanks: 0
|
Quote:
Originally Posted by M4L1F1C
Is your hack external or internal?
|
internal
i mean you can use meth1 for reading
i had the problem when i made internal esp with RPM so i used meth1.like josueinaki
|
|
|
 |
Similar Threads
|
Help Pointer and Offset
09/05/2012 - Cabal Online - 8 Replies
Hello everyone, I'm struggling to get the pointer and offset of an address, already have several address here however are not fixed, so I need to get pointer and offset to make a trainer.
Come on, every time I click on Find out what writes to this address for the proper functioning, someone would have a solution to get the pointer and offset without problems?
thank you
ps: I've tried to get pointer that way, but the Cabal closes, I'm doing this in Brazil Cabal Online
|
Help Pointer and Offset
09/04/2012 - Cabal Hacks, Bots, Cheats, Exploits & Macros - 2 Replies
Hello everyone, I'm struggling to get the pointer and offset of an address, already have several address here however are not fixed, so I need to get pointer and offset to make a trainer.
Come on, every time I click on Find out what writes to this address for the proper functioning, someone would have a solution to get the pointer and offset without problems?
thank you
|
Offset Pointer Problem >.<
08/30/2012 - Cabal Online - 6 Replies
sorry for asking noob question :o but im really stuck in this..
question:
--how to declare in (C++) the resulting address value of pointers and address?
ex:
#define Addr_Base 0x0000000
#define Addr_offset 0x0001
#define Addr_Value ??????
|
help with pointer+offset
11/28/2010 - Last Chaos - 0 Replies
this is my code in c++
__inline ULONG_PTR ReadPointer(ULONG_PTR* ulBase, INT nOffset)
{
if (!IsBadReadPtr((VOID*)ulBase, sizeof(ULONG_PTR)))
{
if (!IsBadReadPtr((VOID*)((*(ULONG_PTR*)ulBase)+nOffs et), sizeof(ULONG_PTR)))
{
return *(ULONG_PTR*)((*(ULONG_PTR*)ulBase)+nOffset);
}
|
Pointer offset suche... help plz
07/09/2009 - AutoIt - 4 Replies
hallo, screeni im Anhang. Finde keinen Pointer und Offset. Leben Energie usw hab ich schnell in Warhammer gefunden.
Habe eine Adresse gefunden die 1 ist wenn ich einen Gegner angeklickt habe und die 0 ist wenn ich keinen Gegner angeklickt habe. Die will ich gern verwenden. Die scheint aber jedenmal dynamisch zu sein.
vielleicht kann ja wer helfen. Danke cya
PicFront - Ihr innovativer Bildhoster
|
All times are GMT +1. The time now is 07:12.
|
|