19.09.2011, 03:18
Quote:
Bom essa minha duvida ela e assim:
Eu vi um tutorial ensinando a mudar a placa coisa simples, ai ta falando isso ne: Vб no final de OnGameModeInit em cima do return e digite a seguinte funзгo: SetVehicleNumberPlate(ID, "PLACA"); Ai eu poderia usar as variaveis do meu servidor pra fazer assim por exemplo: Код:
if(vId==TerrorCar[0]||vId==TerrorCar[1]||vId==TerrorCar[2]||vId==TerrorCar[3]||vId==TerrorCar[4]||vId==TerrorCar[5]||vId==TerrorCar[6]||vId==TerrorCar[7]||vId==TerrorCar[8]||vId==TerrorCar[9]) { SetVehicleNumberPlate(vehicleid, "Terrorista"); Que os carros da ORG tivessem escrito assim nas placas: Carro alqaeda - AL QAEDA - 2011; E qeria q todos os carros que nao fossem de org ou emprego Aparecesse SEM PLACA. Eu ja colokei /emplacar no detran e so falta colocar pra salvar a placa. qm puder me ajudar agradeзo e do + rep |
pawn Код:
public OnGameModeInit()
{
new vId = GetPlayerVehicleID(playerid);
if(vId == TerrorCar[0] || vId == TerrorCar[1] || vId == TerrorCar[2] || vId == TerrorCar[3] || vId == TerrorCar[4] || vId == TerrorCar[5] || vId == TerrorCar[6] || vId == TerrorCar[7] || vId == TerrorCar[8] || vId == TerrorCar[9])
{
SetVehicleNumberPlate(vId, "Terrorista - 2011");
}
return 1;
}