public OnPlayerText(playerid, text[])
{
if(strfind(text, "Enter-text-here", true) != -1) { // this will search in "text" array the string "Enter-text-here" and will ignore uppercase if used,to set it to case sensetive,set the last parameter to false.
// put sound code here
}
return 1;
}