Kod:
// client :D
const DWORD CSEntity_Addy = 0x4D3904;
const DWORD CSPlayer_Addy = 0x4C6708;
const DWORD EntityLoop__ = 10;
// hepsi exbrowser tarafından çıkarılmıştır.
class CSession
{
public:
__int32 m_iCurrentPlayers; //0x0000
char pad_0x0004[0x4]; //0x0004
}; //Size=0x0008
class CSPlayer
{
public:
char pad_0x0000[0x94]; //0x0000
__int32 m_iPlayerHealth; //0x0094
char pad_0x0098[0x4]; //0x0098
__int32 m_iPlayerTeam; //0x009C
char pad_0x00A0[0x1C0]; //0x00A0
float m_iPlayerX; //0x0260
float m_iPlayerY; //0x0264
float m_iPlayerZ; //0x0268
char pad_0x026C[0x18]; //0x026C
}; //Size=0x0284
Kullanımı ;
Kod:
static DWORD PlayerBase;
static CSPlayer * Player__;
PlayerBase = *(DWORD *)(ClientDLL->dwBaseAddr + CSPlayer_Addy);
if(PlayerBase)
{
Player__ = (CSPlayer *)PlayerBase;
Text("Player Health : %d", Player__->m_iPlayerHealth);
Text("Player Team : %d", Player__->m_iPlayerTeam);
Text("Player X : %.0f | Y : %.0f | Z : %.0f", Player__->m_iPlayerX, Player__->m_iPlayerY, Player__->m_iPlayerZ);
}
Kolay gelsin!
Son düzenleme: