11.08.2013, 11:58
Add a boolean to your script 
Hope it helped

pawn Код:
new bool:IsNew[MAX_PLAYERS];
//somewhere you check if they've registered. EG, showing a register dialog.
IsNew[playerid]=true;
//Actually adding the account, or making them "not new".
IsNew[playerid]=false;
//example
public OnPlayerSpawn(playerid)
{
if(IsNew[playerid]==true)
{
SendClientMessage(playerid,-1,"Welcome.");
IsNew[playerid]=false;
}
return 1;
}