Ayuda con MAYUSCULAS
#2

Prueba asн:

pawn Код:
public OnPlayerText(playerid, text[])
{
    if(IsPlayerAdmin(playerid) == 0)
    {
        new const len = strlen(text);

        for(new i = 0; i < len; i++)
        {
            text[i] = tolower(text[i]);
        }

        new string[128];
        format(string, sizeof(string), "%s dice: %s", PlayerName(playerid), text);
        SendClientMessageToAll(-1, string);
    }
    else
    {
        return 1;
    }
    return 0;
}
Reply


Messages In This Thread
Ayuda con MAYUSCULAS - by FlavioCesar - 13.10.2014, 20:23
Respuesta: Ayuda con MAYUSCULAS - by roderjit - 13.10.2014, 23:32
Respuesta: Ayuda con MAYUSCULAS - by aoEXE - 14.10.2014, 03:36
Re: Respuesta: Ayuda con MAYUSCULAS - by FlavioCesar - 14.10.2014, 16:46
Respuesta: Ayuda con MAYUSCULAS - by aoEXE - 14.10.2014, 17:07
Re: Respuesta: Ayuda con MAYUSCULAS - by FlavioCesar - 14.10.2014, 17:30

Forum Jump:


Users browsing this thread: 1 Guest(s)