benberk
Member
There's a function that works on other SAMP versions but no works for 0.3DL
This function works for getting surface of current chat, Chat offset works but the offset that called 0x63BE not works for 0.3.dl...
I need new offsets of surface, entries and size of entry for 0.3dl...
This function works for getting surface of current chat, Chat offset works but the offset that called 0x63BE not works for 0.3.dl...
Code:
Chat::surface() const {
if ( !g_Chat ) return nullptr;
return *(IDirect3DSurface9 **)( *(size_t *)0x2ACA10 + 0x63BE/*offset surface 0.3.7*/ );
}
Code:
Chat::entry( int id ) const {
if ( !g_Chat) return nullptr;
return (void *)( *(size_t *)0x2ACA10 + 0x132/*offset entries 0.3.7*/ + id * 0xFC/*offset entrysize 0.3.7*/);
}
I need new offsets of surface, entries and size of entry for 0.3dl...