Ovo je skripta za ownercarship i sve lepo uradim vidim okey je kad compile izbaci mi warning
Prvi put trazim pomoc pa neznam kako uradit temu itno mi je

Warnings
C:\Users\eXpert\Desktop\vvvv\world\gamemodes\improvedlife.pwn(202) : warning 213: tag mismatch
C:\Users\eXpert\Desktop\vvvv\world\gamemodes\improvedlife.pwn(203) : warning 213: tag mismatch
C:\Users\eXpert\Desktop\vvvv\world\gamemodes\improvedlife.pwn(204) : warning 213: tag mismatch
C:\Users\eXpert\Desktop\vvvv\world\gamemodes\improvedlife.pwn(205) : warning 213: tag mismatch
Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase

4 Warnings.

Skripta
  enum vInfo
{
vGazda,
vCarX,
vCarY,
vCarZ,
vCarA,
}
new VehInfo;

forward LoadVeh_data(playerid, name[], value[]);
public LoadVeh_data(playerid, name[], value[])
{
    INI_String("Gazda", VehInfo, 100);
    INI_Float("CarX", VehInfo);
    INI_Float("CarY", VehInfo);
    INI_Float("CarZ", VehInfo);
    INI_Float("CarA", VehInfo);
  return 1;
}
stock Zacuvajveh(playerid)
{
    new INI:Fajl = INI_Open(IgraciPath(playerid));
    INI_SetTag(Fajl, "data");
    INI_WriteInt(Fajl, "Poteklo", PlayerInfo);
    INI_WriteInt(Fajl, "Pol", PlayerInfo);
    INI_WriteInt(Fajl, "Vozrast", PlayerInfo);
    INI_WriteInt(Fajl, "Skin", PlayerInfo);
    INI_WriteInt(Fajl, "Registriran", PlayerInfo);
    INI_WriteInt(Fajl, "Exp", PlayerInfo);
    INI_WriteInt(Fajl, "Level", PlayerInfo);
    INI_WriteInt(Fajl, "Karakter", PlayerInfo);
    INI_Close(Fajl);
    return 1;
}