Thank you, MasterQ32. A7 supports engine_getscriptinfo. But;
Originally Posted By: Manual

engine_getscriptinfo (void* address,char** name)

function foo() { beep(); }
...
char* funcname;
engine_getscriptinfo(foo,&funcname);



So i need a void/function address. My question is how can i find that as "your.action".
i need something like "get_action(ENTITY* ent,char* name)" and i don't know how can i do that.