20.03.2015, 19:47
Would be very good to get version string or version info as hex from ppData, like:
What I would like to see is:
Why this would be good? For memory hacking plugins to detect version automaticly. Now we can detect version by checking logprintf address or in any other different ways, but this would be the best. It's just 1 minutes of work.
In R server releases (R1, R2, R3, ...) structures do not change 90% of time, so with this I would know how to create YSF (and other memory hacking plugin developers too if they will use pattern scan) future compatible without recompiling.
pawn Код:
pAMXFunctions = ppData[PLUGIN_DATA_AMX_EXPORTS];
pawn Код:
iServerVersion = ppData[PLUGIN_DATA_SERVER_VERSION];
In R server releases (R1, R2, R3, ...) structures do not change 90% of time, so with this I would know how to create YSF (and other memory hacking plugin developers too if they will use pattern scan) future compatible without recompiling.