how to set 3dtextlabel inside interior -
Jihanz - 25.03.2017
Can you help me how to put this Create3DTextLabel to inside interior....
I've been using them but can not always be
PHP код:
Create3DTextLabel("Driver Lisensi ketik /driverlisensi",0xA600A6FF,358.2361,160.4047,1008.3828,5,0);
can not display it
Re: how to set 3dtextlabel inside interior -
ikkentim - 25.03.2017
You need not worry about the interior, however, you must make sure you've got the right virtual world.
Re: how to set 3dtextlabel inside interior -
LEOTorres - 25.03.2017
Try setting the last parameter, testLOS, to 1. Let me know if that fixes it.
Re: how to set 3dtextlabel inside interior -
Jihanz - 25.03.2017
cannot work
Re: how to set 3dtextlabel inside interior -
jasperschellekens - 25.03.2017
Try this
PHP код:
Create3DTextLabel("Driver Lisensi ketik /driverlisensi",0xA600A6FF,358.2361,160.4047,1008.3828,5,-1);
Re: how to set 3dtextlabel inside interior -
Jihanz - 25.03.2017
Quote:
Originally Posted by jasperschellekens
Try this
PHP код:
Create3DTextLabel("Driver Lisensi ketik /driverlisensi",0xA600A6FF,358.2361,160.4047,1008.3828,5,-1);
|
Not affected
Re: how to set 3dtextlabel inside interior -
X337 - 25.03.2017
Make sure you inputted correct virtual world in 8th parameter.
And also static text3D only supports virtual world, which you can't set in which interior it should appears, use streamer instead.
Re: how to set 3dtextlabel inside interior -
Jihanz - 26.03.2017
Quote:
Originally Posted by X337
Make sure you inputted correct virtual world in 8th parameter.
And also static text3D only supports virtual world, which you can't set in which interior it should appears, use streamer instead.
|
not affected
Re: how to set 3dtextlabel inside interior -
ISmokezU - 26.03.2017
Try
PHP код:
#include <Streamer>
CreateDynamic3DTextLabel("Driver Lisensi ketik /driverlisensi", 0xA600A6FF, 358.2361, 160.4047, 1008.3828, 5.0, .testlos = 0, .worldid = 5, interiorid = 5, playerid = -1, 10.0);
Or, Config it:
PHP код:
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 = STREAMER_3D_TEXT_LABEL_SD, STREAMER_TAG_AREA areaid = STREAMER_TAG_AREA -1)