12.01.2011, 18:28
pawn Код:
if(strcmp(cmd, "/veiculo", true) == 0 || strcmp(cmd, "/v", true) == 0)
{
if(IsPlayerConnected(playerid))
{
if(GetPlayerState(playerid) == PLAYER_STATE_DRIVER)
{
SendClientMessage(playerid, INFO_COLOR, "[ERRO] Vocк jб estб em um veнculo.");
return 1;
}
tmp = strtok(cmdtext, idx);
if(!strlen(tmp))
{
SendClientMessage(playerid, INFO_COLOR, "[INFO] /veiculo [ID do veнculo] [COR 1] [COR 2]");
return 1;
}
new carrocriado;
carrocriado = strval(tmp);
if(carrocriado < 400 || carrocriado > 611)
{
SendClientMessage(playerid, INFO_COLOR, "[ERRO] O ID do veнculo nгo pode ser menor que 400 ou maior que 611 !");
return 1;
}
tmp = strtok(cmdtext, idx);
if(!strlen(tmp))
{
SendClientMessage(playerid, INFO_COLOR, "[INFO] /veiculo [ID do veнculo] [COR 1] [COR 2]");
return 1;
}
new cor1;
cor1 = strval(tmp);
if(cor1 < 0 || cor1 > 126) { SendClientMessage(playerid, INFO_COLOR, "[ERRO] O ID da cor 1 nгo pode ser menor que 0 ou maior que 126."); return 1; }
tmp = strtok(cmdtext, idx);
if(!strlen(tmp))
{
SendClientMessage(playerid, INFO_COLOR, "[INFO] /veiculo [ID do veнculo] [COR 1] [COR 2]]");
return 1;
}
new cor2;
cor2 = strval(tmp);
if(cor2 < 0 || cor2 > 126) { SendClientMessage(playerid, COLOR_GREY, "[ERRO] O ID da cor 2 nгo pode ser menor que 0 ou maior que 126."); return 1; }
new Float:X,Float:Y,Float:Z;
GetPlayerPos(playerid, X,Y,Z);
CreateVehicle(carrocriado, X,Y+3,Z, 0.0, cor1, cor2, 60000);
PutPlayerInVehicle(playerid, carrocriado, 0);//Diante dos fatos estб tudo certo, no meu conceito. ^^
SendClientMessage(playerid, INFO_COLOR, "Veнculo criado.");
}
return 1;
}
Alguem poderia me ajudar ? ' Nгo entendo eu coloquei o 'PutPlayerInVehicle', mas ele nгo й posto quando faz o comando.