Ban With Message ?
#5

Thanks, but how to make to show reason and admin name which banned or kicked you? My ban and kick cmd:

Код:
CMD:ban( playerid, params[ ] )
{
    if(PlayerInfo[playerid][pAdmin] == 0) return SendClientMessage( playerid, -1, "Tu ne administratorius!" );
    new
        id,
        reason[ 64 ]
    ;
    if(sscanf( params, "us[64]", id, reason ) ) return SendClientMessage( playerid, -1, "Naudojimas: /ban [Nickas] [Prieћastis]" );
    if( !IsPlayerConnected( id ) || id == INVALID_PLAYER_ID ) return SendClientMessage( playerid, -1, "Tokio ћaidėjo nėra." );
    if(PlayerInfo[id][pPadmin] == 1) return SendClientMessage(playerid, -1, "Ką čia darai?");
    new
        str[ 128 ],
        pName[ MAX_PLAYER_NAME ],
        aName[ MAX_PLAYER_NAME ]
    ;
    GetPlayerName( playerid, aName, MAX_PLAYER_NAME );
    GetPlayerName( id, pName, MAX_PLAYER_NAME );
    format( str, sizeof( str ), "%s Uћblokavo ћaidėją %s. (Prieћastis: %s)", aName, pName, reason ); //show like this
    SendClientMessageToAll( -1, str );
    BanEx( id,str);
    return 1;
}
Код:
CMD:kick( playerid, params[ ] )
{
    new
        id,
        reason[ 64 ]
    ;
    if( PlayerInfo[ playerid ][ pAdmin ] < 1 ) return SendClientMessage( playerid, 0xFF0000AA, "Tu ne administratorius!" );
    if(sscanf( params, "us[64]", id, reason ) ) return SendClientMessage( playerid, 0xDEEE20FF, "Naudojimas: /kick [Nick] [Prieћastis]" );
    if( !IsPlayerConnected( id ) || id == INVALID_PLAYER_ID ) return SendClientMessage( playerid, 0xDEEE20FF, "Tokio ћaidėjo nėra" );
    new
        str[ 128 ],
        pName[ MAX_PLAYER_NAME ],
        aName[ MAX_PLAYER_NAME ]
    ;
    GetPlayerName( playerid, aName, MAX_PLAYER_NAME );
    GetPlayerName( id, pName, MAX_PLAYER_NAME );
    format( str, sizeof( str ), "Administratorius %s iљmetė ћaidėją %s. Prieћastis: %s ", aName, pName, reason ); // show like this
    SendClientMessageToAll( 0xDEEE20FF, str );
    Kick( id );
    return 1;
}
Reply


Messages In This Thread
Ban With Message ? - by Louris - 14.02.2013, 10:33
Re: Ban With Message ? - by Windrush - 14.02.2013, 10:38
Re: Ban With Message ? - by zxc1 - 14.02.2013, 10:56
Re: Ban With Message ? - by Windrush - 14.02.2013, 11:03
Re: Ban With Message ? - by Louris - 14.02.2013, 11:06
Re: Ban With Message ? - by ZayanImran - 14.02.2013, 11:10
Re: Ban With Message ? - by Louris - 14.02.2013, 11:14

Forum Jump:


Users browsing this thread: 1 Guest(s)