You concat strings using @, so don't place it inside a string (" ")
PHP Code:
"Profile : @pl.nick@";
Would be:
PHP Code:
"Profile: " @ pl.nick ;
Also, you are referencing 'pl' which is a uninitialized variable. Look into using the findplayer() function.