27.01.2014, 08:38
Hello everyone ! , I have a little problem with this code :
Errors:
What did I do wrong ?
PHP код:
if(!strcmp(cmd,"/viptag",true))
{
new Text3D:tag = Create3DTextLabel("V.I.P",COLOR_GOLD, 0.0,40,20,0,1);
if(PlayerInfo[playerid][pVIP] >=1)
{
new tagvar = 0;
if(tagvar == 0)
{
Attach3DTextLabelToPlayer(tag,playerid, 0,0,1);
tagvar = 1;
}
else if(tagvar == 1)
{
DeletePlayer3DTextLabel(playerid,tag); // Line 1594
tagvar = 0;
}
}
else {SendClientMessage(playerid, COLOR_GREY, "You are not a VIP !");}
}
PHP код:
...\SAMP\gamemodes\RPG.pwn(1594) : warning 213: tag mismatch