SA-MP Forums Archive
prblem with 3d text - 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: prblem with 3d text (/showthread.php?tid=473698)



prblem with 3d text - Pawnie - 04.11.2013

So yeah, whats the problem with this?

It keeps saying tag missmatch

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



Re: prblem with 3d text - DobbysGamertag - 04.11.2013

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



Re: prblem with 3d text - Pawnie - 04.11.2013

But its stll not visible..


Re: prblem with 3d text - DobbysGamertag - 04.11.2013

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.


Re: prblem with 3d text - Pawnie - 04.11.2013

Код:
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


Re: prblem with 3d text - DobbysGamertag - 04.11.2013

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.


Re: prblem with 3d text - Pawnie - 04.11.2013

Resolved