SA-MP Forums Archive
3D text player tag mismatch - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: 3D text player tag mismatch (/showthread.php?tid=589809)



3D text player tag mismatch - Stoyanov - 22.09.2015

Код:
DestroyDynamic3DTextLabel(LVd);
DestroyDynamic3DTextLabel(SFd);
DestroyDynamic3DTextLabel(LSd);
Код:
LVd = CreateDynamic3DTextLabel("test1", WHITE, 2486.0544, 1854.6410, 4.4475, 20, INVALID_PLAYER_ID, INVALID_VEHICLE_ID, 0, -1, -1, 20);
SFd = CreateDynamic3DTextLabel("test2", WHITE, -1745.8992, 167.5254, 1.0604, 20, INVALID_PLAYER_ID, INVALID_VEHICLE_ID, 0, -1, -1, 20);
LSd = CreateDynamic3DTextLabel("test3", WHITE, 2187.2366, -2254.2368, 7.0467, 20, INVALID_PLAYER_ID, INVALID_VEHICLE_ID, 0, -1, -1, 20);
Tag Mismatch


Re: 3D text player tag mismatch - Jastak - 22.09.2015

You should add the Tag "Text3D" to the variables: "LVd", "SFd" and "LSd".

For Example:
Код:
new Text3D: LVd;
new Text3D: SFd;
new Text3D: LSd;



Re: 3D text player tag mismatch - Stoyanov - 22.09.2015

damn i always forgot them. Thanks