SA-MP Forums Archive
Tag mismatch? - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Tag mismatch? (/showthread.php?tid=319413)



Tag mismatch? - 2KY - 19.02.2012

I'm creating my housing system like all the rest of my dynamic systems, why is this giving me a tag mismatch?

My enum:
pawn Код:
enum E_houVars
{
    houNam[64],
    houCost,
    houEnterPos[4],
    houExitPos[4],
    houInterior,
    houVirtualWorld,
    houOwner[32]
}
pawn Код:
for ( new h; h < MAX_HOUSES; h++ )
    {
        format(houStr, sizeof(houStr), "RPMod/Houses/%d.ini", h);
       
        INI_ParseFile(houStr, "LoadHouse_%s", .bExtra = true, .extra = h);
       
        if(!strcmp(houInfo[h][Owner], "None")) //Tag mismatch!
        {
        }
    }



Re: Tag mismatch? - -Prodigy- - 19.02.2012

"[Owner]" = "[houOwner]" ?


Re: Tag mismatch? - 2KY - 19.02.2012

Quote:
Originally Posted by -Prodigy-
Посмотреть сообщение
"[Owner]" = "[houOwner]" ?
I'm an idiot. Thank you.


Re: Tag mismatch? - Boooth - 19.02.2012

Fail