warning Not Translated
This page has not been translated into the language that your browser requested yet. The English content is being shown as a fallback.
If you want to contribute a translation for this page then please click here.
IsNickNameCharacterAllowed
warning
This function was added in omp v1.1.0.2612 and will not work in earlier versions!
Description
Checks if a character is allowed in nickname.
Name | Description |
---|---|
character | The character to check. |
Returns
This function returns true if the character is allowed, or false if it is not.
Examples
public OnGameModeInit()
{
AllowNickNameCharacter('*', true); // Allow char *
if (IsNickNameCharacterAllowed('*'))
{
print("Character * is allowed in nickname.");
}
return 1;
}
Related Functions
- AllowNickNameCharacter: Allows a character to be used in the nick name.