0.3.DL value of offsets that working on other SAMP versions

benberk

Member
Joined
Jan 19, 2020
Messages
19
Reaction score
3
Location
Constantine
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...

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...
 

Parazitas

God
Joined
Jan 2, 2017
Messages
3,104
Solutions
5
Reaction score
882
Location
Lithuania
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...

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...


First of all...
Leave proper example of your function which working on any other samp version...
At moment which you have posted here is completely disaster..
I could try find offset, but for sure not now when you have left here broken code mixed whith other samp versions..
 
Top