warning help please!
#1

Hi every body
i have an warning help please!

warning 213: tag mismatch

Reply
#2

It means you're trying to give whatever function you're using the wrong type of data, example:

pawn Код:
new h;
    GetPlayerHealth(playerid, h);
This would result in a tag mismatch. To fix it:


pawn Код:
new Float:h;
    GetPlayerHealth(playerid, h);
If you gave us the code the error is corresponding to it would have been so much easier...
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)