09.02.2014, 18:46
Hi, I'm trying to create a vehicle system based on this tutorial https://sampforum.blast.hk/showthread.php?tid=416104 but I want to add more stuff than just what the tutorial has, and now I get 3 tag mismatch warnings.
Here's the stock:
And here's the function that its used on VehicleLoad the VehicleCreate line is the line where I get the 3 tag mismatch warnings);
Here's the stock:
Код:
VehicleCreate(Modelo, Posx, Posy, Posz, Ang, Color1, Color2, Pintura, Dueno[], Nombre[], Spoiler, DefensaD, DefensaT, Lampara, Hidraulicos, Ruedas, Escape, Capo, Techo, Ventanillas, Nitro)
Код:
new Float:Posx; new Float:Posy; new Float:Posz; new Float:Ang; new Color1; new Color2; sscanf(Vehiculo[vehicleid][vPos],"p<,>ffff",Posx,Posy,Posz,Ang); sscanf(Vehiculo[vehicleid][vColores],"p<,>ii",Color1, Color2); VehicleCreate(Vehiculo[vehicleid][vModelo], Posx, Posy, Posz, Ang, Color1, Color2, Vehiculo[vehicleid][vPaintjob], Vehiculo[vehicleid][vDueno], Vehiculo[vehicleid][vNombre], Vehiculo[vehicleid][vPlaca], Vehiculo[vehicleid][vSpoiler], Vehiculo[vehicleid][vDefensaD], Vehiculo[vehicleid][vDefensaT], Vehiculo[vehicleid][vLampara], Vehiculo[vehicleid][vHidraulicos], Vehiculo[vehicleid][vRuedas], Vehiculo[vehicleid][vEscape], Vehiculo[vehicleid][vCapo], Vehiculo[vehicleid][vTecho], Vehiculo[vehicleid][vVentanillas], Vehiculo[vehicleid][vNitro]);