22.06.2015, 19:33
error
Please
Code:
C:\Users\2\Desktop\gamemode\gamemodes\2.pwn(3075) : warning 213: tag mismatch C:\Users\2\Desktop\gamemode\gamemodes\2.pwn(3075) : warning 213: tag mismatch C:\Users\2\Desktop\gamemode\gamemodes\2.pwn(3075) : warning 213: tag mismatch Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase 3 Warnings.
PHP Code:
stock PlacaVeiculoPerto(playerid)
{
new Float:distance = 10.0, Float: currentDistance = 11.0, vehicleid = 0, Pos[3];
for(new i; i < MAX_VEHICLES; i++)
{
GetVehiclePos(i, Pos[0], Pos[1], Pos[2]); //error <<<<<<<<<<<
currentDistance = GetPlayerDistanceFromPoint(playerid, Pos[0], Pos[1], Pos[2]);
if(currentDistance <= 7.0 && currentDistance < distance) {
vehicleid = i;
distance = currentDistance;
}
}
return vehicleid;
}