10.02.2017, 03:33
(
Последний раз редактировалось weex; 10.02.2017 в 17:09.
)
I've used more then 1000 Text3D...
So i needed to use CreateDynamic3DTextLabel from stream lib
But it's not work well...
Every Text3D is showing on player id 0, houses,weeds,nametags, everything...
I have this 6 ones
I've added this thing:
And:
To remove conflicts IDs (i saw it in a topic here, but idk if i'm doing right)
Anyways, not work...
The only Attach3DTextLabelToPlayer i have is this:
So i needed to use CreateDynamic3DTextLabel from stream lib
But it's not work well...
Every Text3D is showing on player id 0, houses,weeds,nametags, everything...
I have this 6 ones
Код:
// 3dlabels new Text3D:NameTag[MAX_PLAYERS] = {Text3D:0, Text3D:29}; // 30 new Text3D:Text3Dmaconhas[MAX_PLAYERS] = {Text3D:30, Text3D:59}; // 30 new Text3D:Text3Dcasas[MAX_HOUSES] = {Text3D:60, Text3D:785}; // 726 new Text3D:Text3Dcorposactors[MAX_ACTORS] = {Text3D:786, Text3D:1385}; // 600 new Text3D:Text3Ddropweapons[MAX_DROP_ITEMS] = {Text3D:1386, Text3D:2135}; // 750 new Text3D:pacotelabel; // pacote label tbm nгo deveria ser daquele jeito /\?
Код:
= {Text3D:0, Text3D:29}; // 30
Код:
DestroyDynamic3DTextLabel(NameTag[playerid]); // DeleteNametag NameTag[playerid] = Text3D:-1;
Anyways, not work...
The only Attach3DTextLabelToPlayer i have is this:
Код:
// CreateNametag new string[80]; format(string, sizeof(string), "(%i)%s", playerid , PlayerName(playerid)); NameTag[playerid] = CreateDynamic3DTextLabel(string, COLOR_WHITE, 0, 0, 0, NAME_DRAWDISTANCE, 0, 1 ); Attach3DTextLabelToPlayer(NameTag[playerid], playerid, 0.0, 0.0, 0.2);