15.01.2014, 19:13
Quote:
Now i changed this
Код:
CreateDynamic3DTextLabel("/buyclothes\n To change your skin.",COLOR_YELLOW, 25, 1097.4546,-1471.4102,15.7825,342.4162,8.0); |
Код:
native 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);
color = COLOR_YELLOW ==> correct
Float: x = 25 ==> incorrect, as 25 is an integer
Float: y = 1097.4546 ==> seems like this is the "x" to me
Float: z = -1471.4102 ==> seems like this is the "y" to me
Float: drawdistance = 15.7825 ==> seems this should be the "z"
attachedplayer = 342.4162 ==> incorrect, playerid's are integers (seems like this should be the drawdistance)
attachedvehicle = 8.0 ==> incorrect, vehicleid's are also integers
Look at each parameter and see what's wrong and what it should be.
Looks like "25" should be removed, and the "8.0" as well.