SA-MP Forums Archive
[AJUDA] 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: [AJUDA] tag mismatch (/showthread.php?tid=315994)



[AJUDA] tag mismatch - Chis - 05.02.2012

(543) : warning 213: tag mismatch
(54 : warning 213: tag mismatch

pawn Код:
CMD::relato(playerid, params[])
{
        if(sscanf(params, "s[128]",Texto)) return SendClientMessage(playerid, COR_CINZA,"* USE: /relato [Texto]"); //543
        format(adminstring, sizeof(adminstring),"[RELATO] %s[ID:%d] - %s",nome,playerid,Texto);
        SendMessageToAdmins(0x33CCFFAA, adminstring);
        format(adminstring, sizeof(adminstring),"Seu Relatуrio Foi Enviado. ( %s ).", Texto);
        SendClientMessage(playerid, 0x33CCFFAA, adminstring);
        return true;//548

}



Re: [AJUDA] tag mismatch - Lуs - 05.02.2012

pawn Код:
CMD:relato(playerid, params[])
{
        if(sscanf(params, "s[128]",Texto)) return SendClientMessage(playerid, COR_CINZA,"* USE: /relato [Texto]"); //543
        new NomePlayer[MAX_PLAYER_NAME], string1[128], string2[128];
        GetPlayerName(playerid, NomePlayer, MAX_PLAYER_NAME);
        format(string1, sizeof(string1),"[RELATO] %s[ID:%d] - %s",NomePlayer,playerid,Texto);
        SendMessageToAdmins(0x33CCFFAA, string1);
        format(string2, sizeof(string2),"Seu Relatуrio Foi Enviado. ( %s ).", Texto);
        SendClientMessage(playerid, 0x33CCFFAA, string2);
        return true;

}



AW: [AJUDA] tag mismatch - paulor - 05.02.2012

CMD:: ? CMD: foi nisso q vc errou.