hi guys is there a way to do * for my clan tag protection such as this
<?php
$TeamTagLenghtR = StrLen( "^*[^*S^*C]" );
$TeamTagStripR = substr( $NickName,0,$TeamTagLenghtR );
IF( $TeamTagStripR == "^*[^*S^*C]" )
THEN
IF( UserInGroup( "CP",$UserName ) != 1 )
THEN
privMsg( "^1You Are Not Allowed To Use The " . $Team . "^1 Tag");
cmdLFS("/msg ^1" . $UserName . " ^1Was Kicked For Using" );
cmdLFS("/msg ^1The " . $Team . " ^1Tag When Not A " . $Team . " ^1Member" );
cmdLFS("/kick " . GetCurrentPlayerVar("UserName") );
ENDIF
ENDIF
?>