Help 0.3DL CreateObject

Status
Not open for further replies.

zugg48

Member
Joined
Aug 16, 2013
Messages
7
Reaction score
0
If someone have the 0.3DL offset of createobject function....

Thanks in advance.
 
Solution
Hook that function to prevent some objects being created.
0.3.DL
C++:
BOOL CObjectPool::Create(ID nId, int nModel, CVector position, CVector rotation, float fDrawDistance) {
    return ((BOOL(__thiscall*)(CObjectPool*, ID, int, CVector, CVector, float))GetAddress(0x127D0))(this, nId, nModel, position, rotation, fDrawDistance);
}
RPC - Create Object offset
PHP:
0x1AE70

Parazitas

God
Staff member
Joined
Jan 2, 2017
Messages
3,183
Solutions
6
Reaction score
905
Location
Lithuania
Hook that function to prevent some objects being created.
0.3.DL
C++:
BOOL CObjectPool::Create(ID nId, int nModel, CVector position, CVector rotation, float fDrawDistance) {
    return ((BOOL(__thiscall*)(CObjectPool*, ID, int, CVector, CVector, float))GetAddress(0x127D0))(this, nId, nModel, position, rotation, fDrawDistance);
}
RPC - Create Object offset
PHP:
0x1AE70
 
Solution

zugg48

Member
Joined
Aug 16, 2013
Messages
7
Reaction score
0
0.3.DL
C++:
BOOL CObjectPool::Create(ID nId, int nModel, CVector position, CVector rotation, float fDrawDistance) {
    return ((BOOL(__thiscall*)(CObjectPool*, ID, int, CVector, CVector, float))GetAddress(0x127D0))(this, nId, nModel, position, rotation, fDrawDistance);
}
RPC - Create Object offset
PHP:
0x1AE70

Niceee, thanks for your time Parazitas.
 
Status
Not open for further replies.
Top