Quote:
Originally Posted by Kreation
For one take the native_ out of the function name, I don't see why that's there.
|
The code would be like this:
PHP Code:
#include < amxmodx >
#include < amxmisc >
// ...Code
public plugin_natives( )
{
register_native( "get_persons_name" , "native_get_persons_name" , 1 )
}
// ...Code
public native_get_persons_name( id )
{
// Blah blah code i wrote
}
__________________