Caps lock on command.
#1

my stock for iscaps
Код:
stock IsCaps( text[ ] ) 
{
    for( new i, j = strlen( text )-1; i < j; i ++ )
    {
        if( ( 'A' <= text[ i ] <= 'Z' ) && ( 'A' <= text[ i+6 ] <= 'Z' ) )
            return true;
    }
    return false;
}
Here is my CMD for shout
Код:
CMD:s(playerid, params[]) return cmd_shout(playerid, params);
CMD:shout(playerid, params[])
{
    new
        string[128],
        shout[100];
    if( IsCaps( shout ) )
    {
        SendClientMessage( playerid, -1, ""COL_RED"[GRESKA]: "COL_WHITE"Ne mozete pisati Caps Lockom, velika slova oznacavaju sukob! "COL_RED"Iskljucite"COL_WHITE" Caps Lock"COL_RED"!" );
        return 0;
    }
    if(sscanf(params, "s[100]", shout))
    {
        SendClientMessage(playerid, -1, ""COL_CYAN"[KORISTI]: "COL_WHITE"/(s)hout [text]");
        return 1;
    }
    else
    {
        format(string, sizeof(string), "%s se dere: %s!!",GetName(playerid),shout);
        ProxDetector(50.0, playerid, string, -1);
    }
    return 1;
}
and i enter /s HAHAHAHAHAH and not working.. not giving error for caps lock
Reply


Messages In This Thread
Caps lock on command. - by TiXz0r - 09.10.2014, 11:08
Re: Caps lock on command. - by RoboN1X - 09.10.2014, 11:31
Re: Caps lock on command. - by TiXz0r - 09.10.2014, 12:54
Re: Caps lock on command. - by YanLanger - 09.10.2014, 14:33
Re: Caps lock on command. - by TiXz0r - 09.10.2014, 21:35
Re: Caps lock on command. - by Threshold - 10.10.2014, 02:06
Re: Caps lock on command. - by TiXz0r - 10.10.2014, 13:51

Forum Jump:


Users browsing this thread: 2 Guest(s)