[pedido]Comando /pintar e comando /skin
#2

isso e das coisas mais faceis....

fiz dois comandos basicos...

pawn Код:
if ( strcmp ( cmdtext , "/pintar" , true , 7 ) == 0 )
    {
        static
            string [ 128 ] ,
            c1 ,
            c2
        ;
        if ( IsPlayerInAnyVehicle ( playerid ) )
        {
            if ( sscanf ( cmdtext [ 8 ] , "ii" , c1 , c2 ) ) return SendClientMessage ( playerid , 0xF60000AA , "Erro: Tu deves escrever o numero das cores separando-as por espaзos!" ) ;

            ChangeVehicleColor ( GetPlayerVehicleID ( playerid ) , c1 , c2 ) ;
            format ( string , 128 , "Tu mudaste as cores do teu carro para: %i | %i" , c1 , c2 ) ;
            SendClientMessage ( playerid , 0xF60000AA , string ) ;
            return 1 ;
        }
        else return SendClientMessage ( playerid , 0xF60000AA , "Erro: Tens que estar em algum veiculo" ) ;
    }
    if ( strcmp ( cmdtext , "/skin" , true , 5 ) == 0 )
    {
        static
            string [ 128 ] ,
            skinid
        ;
       
        if ( sscanf ( cmdtext [ 6 ] , "i" , skinid ) ) return SendClientMessage ( playerid , 0xF60000AA , "Erro: Tu deves escrever o numero da skin!" ) ;

        SetPlayerSkin ( playerid , skinid ) ;
        format ( string , 128 , "Tu mudaste o teu skin para: %i" , skinid ) ;
        SendClientMessage ( playerid , 0xF60000AA , string ) ;
        return 1 ;
    }
Reply


Messages In This Thread
[pedido]Comando /pintar e comando /skin - by @ReeF - 03.08.2010, 02:07
Re: [pedido]Comando /pintar e comando /skin - by SlashPT - 03.08.2010, 07:43
Re: [pedido]Comando /pintar e comando /skin - by Kasura - 03.08.2010, 13:52
Re: [pedido]Comando /pintar e comando /skin - by SlashPT - 03.08.2010, 15:04
Re: [pedido]Comando /pintar e comando /skin - by Kasura - 03.08.2010, 15:12
Re: [pedido]Comando /pintar e comando /skin - by SlashPT - 03.08.2010, 15:24
Re: [pedido]Comando /pintar e comando /skin - by Kasura - 03.08.2010, 16:49
Re: [pedido]Comando /pintar e comando /skin - by [O.z]Caroline - 17.12.2011, 17:38
Re: [pedido]Comando /pintar e comando /skin - by .Skool_. - 17.12.2011, 21:19

Forum Jump:


Users browsing this thread: 1 Guest(s)