PHP Code:
public somelocal(id, name[])
{
if( callfunc_begin("someremote","otherplugin.amxx") == 1 )
{
callfunc_push_int(id)
callfunc_push_str(name)
callfunc_end()
}
}
1- begin [setting up call]
2- push [values as parameters]
3- end [setup and do the call]
someremote must be public function in the other plugin.
__________________