I am by no means an expert, but it sounds right about changing FCBN.
Another thing that you could do is this.
function servercmdDelete(%client, %name)
{
if(%client.isAdmin)
{
findclientbyname(%name);
%name.player.delete();
}
}
I believe you were missing the parentheses after delete, and that is also a problem.