24.12.2015, 11:03
Hey hey,
Got the warning "warning 213: tag mismatch" and I can't solve it. Here is the code:
Any idea's or help?
Got the warning "warning 213: tag mismatch" and I can't solve it. Here is the code:
PHP код:
COMMAND:robinfix(playerid, params[])
{
if(gTeam[playerid] == TEAM_ROBIN)
{
for(new i = 1, j = GetVehiclePoolSize(); i <= j; i++)
{
if(!VehicleOccupied(RobinCar[i])) // warning 213: tag mismatch
{
SetVehicleToRespawn(RobinCar[i]); // warning 213: tag mismatch
}
}
}
else if(gTeam[playerid] != TEAM_ROBIN)
{
SendClientMessage(playerid, TEAM_ROBIN_COLOR, "This Command is owned by Daan!");
}
return 1;
}