05.02.2013, 14:10
Ola galera estou com um erro aqui . sendo ele
e neste codigo :
ja tentei mudar o valor das variaveis tmp para 24 e nada ...
Код:
error: 035: argument type mismatch (argument 2)
e neste codigo :
pawn Код:
CMD:pintar(playerid,params[])
{
new String[128];
new tmp[24];
new tmp2[24];
if ( ! dini_Exists ( String ) )
return SendClientMessage ( playerid , -1 , "Vocк nгo possui um veiculo !" ) ;
if ( ! IsPlayerInVehicle ( playerid , CarroJogador [ playerid ] ) )
return SendClientMessage ( playerid , 0xFFFFFFAA , "Vocк nгo estб no seu veiculo." ) ;
if ( ! strlen ( tmp ) )
return SendClientMessage ( playerid , -1 , "Use /pintar [ Cor ]" ) ;
ChangeVehicleColor(GetPlayerVehicleID(playerid),tmp2,tmp2);//ESTA LINAH O ERRO
format ( String , sizeof ( String ) , "Voce Mudou a Cor do seu veiculo para : %i" , tmp2 ) ;
SendClientMessage ( playerid , -1 , String ) ;
return 1;
}