11.11.2014, 16:04
Hi Everybody
when i compiler my gamemode, i get a warning :
And line 7548:
This codes from a whisper command :
when i compiler my gamemode, i get a warning :
pawn Код:
E:\...\gm.pwn(7548) : warning 213: tag mismatch
Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase
1 Warning.
pawn Код:
Attach3DTextLabelToPlayer(MyLabel, playerid, 0.0, 0.0, 0.4);
pawn Код:
dcmd_w(playerid,params[])
{
new string[128];
if(!strlen(params))
{
SendClientMessage(playerid,COLOR_ERROR,"USAGE: /W (Message)");
return 1;
}
for(new i=0;i<MAX_PLAYERS;i++)
{
if(IsPlayerConnected(i) && GetDistanceBetweenPlayers(playerid,i) < 10)
{
MyLabel = CreatePlayer3DTextLabel(playerid,params,COLOR_WHITE,0.0,0.0,0.0,40.0);
Attach3DTextLabelToPlayer(MyLabel, playerid, 0.0, 0.0, 0.4);
return 1;
}
}
return 1;
}