01.08.2010, 07:10
Hey Guys!
I have a dcmd command which shows/hides a textdraw called Infobox, and the compiler writes 4x Tag Mismatches.
The warnings:
And here is the code:
Please help to make it work
Thanks
Nonameman
I have a dcmd command which shows/hides a textdraw called Infobox, and the compiler writes 4x Tag Mismatches.
The warnings:
Код:
C:\Documents and Settings\Bence\Asztal\sa.mp\gamemodes\Fun.pwn(976) : warning 213: tag mismatch C:\Documents and Settings\Bence\Asztal\sa.mp\gamemodes\Fun.pwn(976) : warning 213: tag mismatch C:\Documents and Settings\Bence\Asztal\sa.mp\gamemodes\Fun.pwn(977) : warning 213: tag mismatch C:\Documents and Settings\Bence\Asztal\sa.mp\gamemodes\Fun.pwn(983) : warning 213: tag mismatch
pawn Код:
dcmd_infodoboz(playerid, params[])
{
new
swtch[10];
if(sscanf(params, "s", swtch)) return SendClientMessage(playerid, colorFAIL, "Hasznбlat: /infodoboz <be/ki>");
if(!strcmp(swtch, "be", 1) || !strcmp(swtch, "ki", 1)) return SendClientMessage(playerid, colorFAIL, "Hasznбlat: /infodoboz <be/ki>");//976
if(!strcmp(swtch, "be", 1))//977
{
TextDrawShowForPlayer(playerid, Infobox[0]);
TextDrawShowForPlayer(playerid, Infobox[1]);
SendClientMessage(playerid, colorSUCCESS, "Infodoboz bekapcsolva!");
}
if(!strcmp(swtch, "ki", 1))//983
{
TextDrawHideForPlayer(playerid, Infobox[0]);
TextDrawHideForPlayer(playerid, Infobox[1]);
SendClientMessage(playerid, colorSUCCESS, "Infodoboz kikapcsolva!");
}
return 1;
}
Thanks
Nonameman