error 010: invalid function or declaration -
Pousser - 29.01.2016
Bom eu estou com Alguns erros e Warnings quer nгo consigo Arrumar, e preciso de uma soluзгo pois esse projeto й de longa data e nгo pode acabar assim com alguns erros
esse aqui sгo os erros e Warnings -->
http://pastebin.com/aYEGpsWm <--
Por favor preciso muito de uma soluзгo! Obrigado
Re: error 010: invalid function or declaration -
Jimmmy - 29.01.2016
Poste os codigo das linha..
Re: error 010: invalid function or declaration -
Pousser - 29.01.2016
Код:
stock CheckChave(playerid, vehicleid)
{
new mot, lu, alar, por, cap, porma, ob;
GetVehicleParamsEx(vehicleid, mot, lu, alar, por, cap, porma, ob);
}
if (IsAAztecaCar(carid)
{
SendClientMessage(playerid, COLOR_LIGHTBLUE, "Vocк nгo й dos Varriors Los Aztecas, por isso nгo tem a chave desse veiculo!");
SetVehicleParamsEx(vehicleid, VEHICLE_PARAMS_OFF, lu, alar, por, cap, porma, ob);
return 1;
}
}
else if(IsACopCar(vehicleid) || IsAPRCar(vehicleid) || IsABOPEsCar(vehicleid) || IsAPFCar(vehicleid) || IsAPCCar(vehicleid) || IsAGATCar(vehicleid))}
{
if(!IsACopFCar(playerid))
{
SendClientMessage(playerid, COLOR_LIGHTBLUE, "Vocк nгo й um Policial, por isso nгo tem a chave desse veiculo!");
SetVehicleParamsEx(vehicleid, VEHICLE_PARAMS_OFF, lu, alar, por, cap, porma, ob);
return 1;
}
}
Re: error 010: invalid function or declaration -
[BOPE]Seu._.Madruga - 29.01.2016
Brother qual linha que estб dando esse erro?
Re: error 010: invalid function or declaration -
Pousser - 29.01.2016
Essa й a Linha com problema
PRINT DAS LINHAS :
http://prntscr.com/9wl85x
O codigo estб abaixo
Код:
stock CheckChave(playerid, vehicleid)
{
new mot, lu, alar, por, cap, porma, ob;
GetVehicleParamsEx(vehicleid, mot, lu, alar, por, cap, porma, ob);
}
if (IsAAztecaCar(carid)
{
SendClientMessage(playerid, COLOR_LIGHTBLUE, "Vocк nгo й dos Varriors Los Aztecas, por isso nгo tem a chave desse veiculo!");
SetVehicleParamsEx(vehicleid, VEHICLE_PARAMS_OFF, lu, alar, por, cap, porma, ob);
return 1;
}
}
else if(IsACopCar(vehicleid) || IsAPRCar(vehicleid) || IsABOPEsCar(vehicleid) || IsAPFCar(vehicleid) || IsAPCCar(vehicleid) || IsAGATCar(vehicleid))}
{
if(!IsACopFCar(playerid))
{
SendClientMessage(playerid, COLOR_LIGHTBLUE, "Vocк nгo й um Policial, por isso nгo tem a chave desse veiculo!");
SetVehicleParamsEx(vehicleid, VEHICLE_PARAMS_OFF, lu, alar, por, cap, porma, ob);
return 1;
}
}
Re: error 010: invalid function or declaration -
[BOPE]Seu._.Madruga - 29.01.2016
PHP код:
stock CheckChave(playerid, vehicleid)
{
new mot, lu, alar, por, cap, porma, ob;
GetVehicleParamsEx(vehicleid, mot, lu, alar, por, cap, porma, ob);
if(IsAAztecaCar(vehicleid)
{
SendClientMessage(playerid, COLOR_LIGHTBLUE, "Vocк nгo й dos Varriors Los Aztecas, por isso nгo tem a chave desse veiculo!");
SetVehicleParamsEx(vehicleid, VEHICLE_PARAMS_OFF, lu, alar, por, cap, porma, ob);
return 1;
}
else if(IsACopCar(vehicleid) || IsAPRCar(vehicleid) || IsABOPEsCar(vehicleid) || IsAPFCar(vehicleid) || IsAPCCar(vehicleid) || IsAGATCar(vehicleid))
{
if(!IsACopFCar(playerid))
{
SendClientMessage(playerid, COLOR_LIGHTBLUE, "Vocк nгo й um Policial, por isso nгo tem a chave desse veiculo!");
SetVehicleParamsEx(vehicleid, VEHICLE_PARAMS_OFF, lu, alar, por, cap, porma, ob);
return 1;
}
}
return 1;
}