Tagmismatch?? What is it?
#1

Hello! So Basically I am putting the command /armour, that is:

pawn Код:
CMD:armour(playerid, params[])
{

    if(pInfo[playerid][pAdminLevel] > 1)
    {
        new id,amount;
        if(sscanf(params,"ui",id,amount)) return SendClientMessage(playerid, COLOR_RED1, "[ ! ] USAGE: /armour <playerid> <amount>");
        if(!IsPlayerConnected(id))return SendClientMessage (playerid, COLOR_WHITE, "[ ! ] ERROR: Invalid Player Id");
        SendClientMessage(playerid, COLOR_RED1, "[ ! ] Your Armour Set !");
        SetPlayerArmour(id,amount);
    }
    return 1;
}
But Is giving two warnings on the Same Line.

pawn Код:
E:\SCRIPT\gamemodes\Dafuq.pwn(713) : warning 213: tag mismatch
E:\SCRIPT\gamemodes\Dafuq.pwn(713) : warning 213: tag mismatch
Pawn compiler 3.2.3664          Copyright (c) 1997-2006, ITB CompuPhase


2 Warnings.
Line Number 713 is"

pawn Код:
if(pInfo[playerid][pAdminLevel] > 1)
Thanks in Advance.
Reply


Messages In This Thread
Tagmismatch?? What is it? - by MAFIAWARS - 24.09.2013, 07:16
Re: Tagmismatch?? What is it? - by iZN - 24.09.2013, 08:51
Re: Tagmismatch?? What is it? - by MAFIAWARS - 24.09.2013, 11:53
Re: Tagmismatch?? What is it? - by Misiur - 24.09.2013, 11:54
Re: Tagmismatch?? What is it? - by Konstantinos - 24.09.2013, 11:55
Re: Tagmismatch?? What is it? - by MAFIAWARS - 24.09.2013, 11:59
Re: Tagmismatch?? What is it? - by MAFIAWARS - 24.09.2013, 12:02

Forum Jump:


Users browsing this thread: 1 Guest(s)