18.07.2012, 13:30
OnPlayerText
So the message with caps letters activated is shown:
Example text... etc
but if I want to show all of the letters are disabled?
example text... etc
PHP код:
new
i;
while (text[i++])
{
if ('A' <= text[i] <= 'Z') text[i] |= 0x20;
}
Example text... etc
but if I want to show all of the letters are disabled?
example text... etc