SA-MP Forums Archive
Tag mismatch - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: Non-English (https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Português/Portuguese (https://sampforum.blast.hk/forumdisplay.php?fid=34)
+---- Thread: Tag mismatch (/showthread.php?tid=230995)



Tag mismatch - Link_ - 24.02.2011

pawn Код:
C:\Documents and Settings\Leo\Desktop\Server - SA-MP 0.3b R2 Win32\gamemodes\GMMataMata.pwn(1030) : warning 213: tag mismatch
C:\Documents and Settings\Leo\Desktop\Server - SA-MP 0.3b R2 Win32\gamemodes\GMMataMata.pwn(1098) : warning 213: tag mismatch
C:\Documents and Settings\Leo\Desktop\Server - SA-MP 0.3b R2 Win32\gamemodes\GMMataMata.pwn(2845) : warning 213: tag mismatch
Pawn compiler 3.2.3664          Copyright (c) 1997-2006, ITB CompuPhase
onde й o error?
pawn Код:
//Modeinit
    if(!fexist("Playboys.ini")) dini_Create("Playboys.ini");
    if(!fexist("Traficantes.ini")) dini_Create("Traficantes.ini");
pawn Код:
//connect
    if(dini_Isset("Playboys.ini",PlayerName(playerid))) PlayerInfo[playerid][Playboys] = (playerid,dini_Int("Playboys.ini",PlayerName(playerid)));
    if(dini_Isset("Traficantes.ini",PlayerName(playerid))) PlayerInfo[playerid][Traficantes] = (playerid,dini_Int("Traficantes.ini",PlayerName(playerid)));
pawn Код:
//Disconnect
    dini_IntSet("Playboys.ini",PlayerName(playerid),PlayerInfo[playerid][Playboys]);
    dini_IntSet("Traficantes.ini",PlayerName(playerid),PlayerInfo[playerid][Traficantes]);



Re: Tag mismatch - Link_ - 24.02.2011

mals double + sabem oque й с?


Re: Tag mismatch - Ricop522 - 24.02.2011

pawn Код:
if(dini_IntSet("Playboys.ini",PlayerName(playerid))) PlayerInfo[playerid][Playboys] = (playerid,dini_Int("Playboys.ini",PlayerName(playerid)));
    if(dini_IntSet("Traficantes.ini",PlayerName(playerid))) PlayerInfo[playerid][Traficantes] = (playerid,dini_Int("Traficantes.ini",PlayerName(playerid)));



Re: Tag mismatch - Link_ - 24.02.2011

vlw '-


Re: Tag mismatch - deregudegu - 24.02.2011

Mas o que significa:
Tag mismatch
E quando da esse erro?


Re: Tag mismatch - ViniBorn - 24.02.2011

Quote:
Originally Posted by Lucas Nicolas
Посмотреть сообщение
Tag Mismatch se nгo me engano й incompatibilidade com a funзгo.
Correto, pode se observar na troca de um parвmetro por outro.

Ex:

Cуdigo correto
pawn Код:
GetPlayerHealth(playerid,health);
Cуdigo que darб Tag Mismatch
pawn Код:
GetPlayerHealth(health,playerid);