08.05.2013, 19:43
The format goes like this
AH!! Found the bug
attachedplayer = INVALID_PLAYER_ID
You give it as 0 so it will be displayed to ID 0 only!
Put INVALID_PLAYER_ID so that its shown to all.
And INVALID_VEHICLE_ID also as the next parameter
This should work!If it isn't there's a problem with your co-ordinates.
pawn Код:
Text3D:CreateDynamic3DTextLabel(const text[], color, Float:x, Float:y, Float:z, Float:drawdistance, attachedplayer = INVALID_PLAYER_ID, attachedvehicle = INVALID_VEHICLE_ID, testlos = 0, worldid = -1, interiorid = -1, playerid = -1, Float:streamdistance = 100.0);
attachedplayer = INVALID_PLAYER_ID
You give it as 0 so it will be displayed to ID 0 only!
Put INVALID_PLAYER_ID so that its shown to all.
And INVALID_VEHICLE_ID also as the next parameter
pawn Код:
CreateDynamic3DTextLabel("TEST", COLOR_YELLOW, 859.9612, -604.4937, 18.4219, 100.0, INVALID_PLAYER_ID,INVALID_VEHICLE_ID);