prblem with 3d text
#1

So yeah, whats the problem with this?

It keeps saying tag missmatch

Код:
TaxText = CreateDynamic3DTextLabel(string,col_lb,x,y,z,12.0,0,0);
Reply
#2

pawn Код:
new Text3D:TaxText;
TaxtText=..
Reply
#3

But its stll not visible..
Reply
#4

Show the code you have?

Код:
This forum requires that you wait 240 seconds between posts. Please try again in 44 seconds.
How are we supposed to help people with this daft limit. Remove pls admins ty.
Reply
#5

Код:
CMD:taxtest(playerid,params[])
{
	new name[MAX_PLAYER_NAME+1], string[128+MAX_PLAYER_NAME+1];
        new Float:X,Float:Z,Float:Y;
        GetPlayerPos(playerid,X,Y,Z);
    GetPlayerName(playerid, name, sizeof(name));
	format(string,sizeof(string),"No tax. %s",name);
    TaxText = CreateDynamic3DTextLabel(string,col_lb,x,y,z,12.0,0,0);
	return 1;
}
here it is sir
Reply
#6

You have to replace X Y Z with numbers right?

pawn Код:
new Float:x,Float:y,Float:z;
    GetPlayerPos(playerid,x,y,z);
Should create it at your position. Make sure col_lib is a color, and the strea distance is correct.
Reply
#7

Resolved
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)