Browse Source

Updated plugin inline description

nosoop 7 years ago
parent
commit
2e553c5ab6
1 changed files with 3 additions and 1 deletions
  1. 3 1
      scripting/csrd_name_filter.sp

+ 3 - 1
scripting/csrd_name_filter.sp

@@ -5,6 +5,8 @@
  * Made in response to a few script kiddies that are (ab)using newlines and other non-printing
  * characters in their name.
  * 
+ * If their existing name has no printable characters, their name will be changed to
+ * "unprintable" plus their userid and their name will be locked.
  */
 #pragma semicolon 1
 #include <sourcemod>
@@ -156,4 +158,4 @@ stock void MultiByteCharacterToCharArray(char[] buffer, int charsize, int charac
 	for (int i = 0; i < charsize; i++) {
 		buffer[i] = (character >> ((charsize - i - 1) * 8 )) & 0xFF;
 	}
-}
+}