Primeiramente voce cria os carros
Agora crie uma forward
E por ultimo em OnGameModeInit
- Código:
new Carros[2];
public OnGameModeInit()
{
Carros[0] = CreateVehicle(Modelo, X, Y, Z, Angulo, Cor1, Cor2, RespawnDelay);//1
Carros[1] = CreateVehicle(Modelo, X, Y, Z, Angulo, Cor1, Cor2, RespawnDelay);//2
return 1;
}
Agora crie uma forward
- Código:
forward IsACar(carid);
public IsACar(carid)
{
for(new i=0;i<sizeof(Carros);i++)
{
if(carid == Carros[i])
{
SetVehicleNumberPlate(carid, "Carro");
return 1;
}
}
return 0;
}
E por ultimo em OnGameModeInit
- Código:
public OnGameModeInit()
{
for(new x = 1; x <= MAX_VEHICLES; x++)
{
if(IsACar(x))
{
new Text3D:VeiculoTexto3D;
VeiculoTexto3D = Create3DTextLabel("Sua Mensage", Cor, 0.0, 0.0, 0.0, DrawDistance, 0, 1);
Attach3DTextLabelToVehicle(VeiculoTexto3D, x, 0.0, 0.0, 2.0);
}
}
return 1;
}