new Text:dmarenatd; dmarenatd = CreatePlayerTextDraw(playerid,2.5 ,211 , "blah"); //error line
I am getting a tag mismatch idk why.
Код:
new Text:dmarenatd; dmarenatd = CreatePlayerTextDraw(playerid,2.5 ,211 , "blah"); //error line |
new PlayerText:dmarenatd[MAX_PLAYERS]; dmarenatd[playerid] = CreatePlayerTextDraw(playerid,2.5 ,211 , "blah");
I am getting a tag mismatch idk why.
Код:
new Text:dmarenatd; dmarenatd = CreatePlayerTextDraw(playerid,2.5 ,211 , "blah"); //error line |
new Text:dmarenatd;
new PlayerText:dmarenatd;
new PlayerText3D:killingspreeonhead[MAX_PLAYERS]; killingspreeonhead[playerid] = CreatePlayer3DTextLabel(playerid,str, 0x008080FF, 30.0, 40.0, 50.0, 40.0, 0); Attach3DTextLabelToPlayer(killingspreeonhead[playerid], playerid, 0.0, 0.0, 0.7); //error line.
same problem with this
Код:
new PlayerText3D:killingspreeonhead[MAX_PLAYERS]; killingspreeonhead[playerid] = CreatePlayer3DTextLabel(playerid,str, 0x008080FF, 30.0, 40.0, 50.0, 40.0, 0); Attach3DTextLabelToPlayer(killingspreeonhead[playerid], playerid, 0.0, 0.0, 0.7); //error line. |
new Text3D:killingspreeonhead[MAX_PLAYERS]; killingspreeonhead[playerid] = Create3DTextLabel(str, 0x008080FF, 30.0, 40.0, 50.0, 40.0, 0); Attach3DTextLabelToPlayer(killingspreeonhead[playerid], playerid, 0.0, 0.0, 0.7);
new Text3D:killingspreeonhead[MAX_PLAYERS];
killingspreeonhead[playerid] = Create3DTextLabel(str, 0x008080FF, 30.0, 40.0, 50.0, 40.0, 0);
Attach3DTextLabelToPlayer(killingspreeonhead[playerid], playerid, 0.0, 0.0, 0.7);
I want it for him. If i make it globally then if i get kill it will change other players also.
|