IS4Code / PawnPlus

A SA-MP plugin enhancing the capabilities of the Pawn programming language

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

I have a question

Dmitriy51 opened this issue · comments

have a question is it possible with this plugin to detect these functions?

Float:vect3_length(Float:f[3])

{

return sqrtf(f[0] * f[0] + f[1] * f[1] + f[2] * f[2]);

}

commented

What do you mean by "detect"?

I didn't ask the right question, SORRY, is it possible to access such a function with your plugin?

commented

Sure, you can use the debug API to browse non-public functions. Use debug_symbol to find the function and debug_symbol_call to invoke it. The script must be compiled with debug info attached.

ok, thank you