15.08.2018, 23:41
strfind is all you need.
pawn Code:
new pName[MAX_PLAYER_NAME];
GetPlayerName(playerid, pName, sizeof pName);
if(strfind(pName, "_") != -1) {
// Name has underscore.
}

