SA-MP Forums Archive
{94 tag mismatch} i tired ! - 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: {94 tag mismatch} i tired ! (/showthread.php?tid=612488)



{94 tag mismatch} i tired ! - vikoo - 18.07.2016

Hello, when I change name of clan to {SP} i got now 94 warnings i was have errors and fixed it but i tired to fix that warnings Help Pls!


Re: {94 tag mismatch} i tired ! - Misiur - 18.07.2016

Somewhere you have an enum, with field "sp"
pawn Код:
enum Anything {
//...
sp,
//...
}
But you changed all "sp" to "SP", and are trying to access nonexistent field:
pawn Код:
PlayerInfo[playerid][SP]
Therefore - tag mismatch.

Also, please don't paste screenshots in the future.


Re: {94 tag mismatch} i tired ! - vikoo - 18.07.2016

thank you Misiur but now i got that warn and iam not see that line look in pic the warn is in 41137 and my pwn end in 41136
Quote:

D:\GTA PROG\for samp\servers\test gamemode\Gamemodes\SPTDM3x.pwn(41137) : warning 203: symbol is never used: "SP"




Re: {94 tag mismatch} i tired ! - Misiur - 18.07.2016

Quote:

symbol is never used

You have somewhere new SP or static SP, or something like that, and it isn't used anywhere in the code. You can either remove it, or just ignore it.