note Help Needed
This wiki is the result of an ongoing community effort — thank you all for helping!
If you want to provide changes to 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.