29.03.2009, 20:12
why am i getting this tag mismatch
LINE 2475:
LINE 2476:
thanks for any help!

pawn Код:
new pname[MAX_PLAYER_NAME];
GetPlayerName(playerid, pname, sizeof(pname));
new AccountStr[100];
format(AccountStr, sizeof(AccountStr), PlayerFile, pname);
new Cash;
new Float:Health;
new Float:Armour;
new Score;
new Skin;
Cash = GetPlayerMoney(playerid);
GetPlayerHealth(playerid,Health);
GetPlayerArmour(playerid,Armour);
Score = GetPlayerScore(playerid);
Skin = GetPlayerSkin(playerid);
dini_IntSet(AccountStr, "money", Cash);
dini_IntSet(AccountStr, "health", Health);
dini_IntSet(AccountStr, "armour", Armour);
dini_IntSet(AccountStr, "score", Score);
dini_IntSet(AccountStr, "skin", Skin);
dini_IntSet(AccountStr, "class", gClass[playerid]);
dini_IntSet(AccountStr, "skill", gSkill[playerid]);
Код:
C:\Users\Ethan\Desktop\SAMPSERVER\gamemodes\UCnR.pwn(2475) : warning 213: tag mismatch C:\Users\Ethan\Desktop\SAMPSERVER\gamemodes\UCnR.pwn(2476) : warning 213: tag mismatch Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase 2 Warnings.
Код:
dini_IntSet(AccountStr, "health", Health);
Код:
dini_IntSet(AccountStr, "armour", Armour);