Перейти к основному содержимому

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.

NameDescription
characterThe 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;
}