/anticaps (playerid)
#1

Hello, how to make an anticaps (playerid) command for example i type the command and the playerid, and the player cant type big letters just small letters.
Reply
#2

You can use this one

PHP код:
public OnPlayerText(playeridtext[])
{
    new
        
i;
    while (
text[++i])
    {
        if (
'A' <= text[i] <= 'Z'text[i] |= 0x20;
    }
    return 
1;

Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)