SA-MP Forums Archive
3D text not showing. - 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: 3D text not showing. (/showthread.php?tid=476191)



3D text not showing. - iGetty - 17.11.2013

How come this isn't showing?:

pawn Код:
format(btext, sizeof(btext), "{FF0000}%s\nOwner:{FFFFFF} %s\n{FF0000}Payout:{FFFFFF} $%s", Business[i][BusinessName], Business[i][BusinessOwner], FormatNumber(Business[i][BusinessPayout]));
Business[i][BusinessText] = Create3DTextLabel(btext, GREEN, ex, ey, ex, 10.0, 0, 1);



Re: 3D text not showing. - Camacorn - 17.11.2013

Quote:
Originally Posted by iGetty
Посмотреть сообщение
How come this isn't showing?:

pawn Код:
format(btext, sizeof(btext), "{FF0000}%s\nOwner:{FFFFFF} %s\n{FF0000}Payout:{FFFFFF} $%s", Business[i][BusinessName], Business[i][BusinessOwner], FormatNumber(Business[i][BusinessPayout]));
Business[i][BusinessText] = Create3DTextLabel(btext, GREEN, ex, ey, ex, 10.0, 0, 1);
You set your Z coordinate to the X coordinate, replace ex with what I assume would be ez.


Re: 3D text not showing. - iGetty - 17.11.2013

Quote:
Originally Posted by Camacorn
Посмотреть сообщение
You set your Z coordinate to the X coordinate, replace ex with what I assume would be ez.
Oh god >.< thanks pal!


Re: 3D text not showing. - Pottus - 17.11.2013

How ironic such an "ez" fix


Re: 3D text not showing. - iGetty - 17.11.2013

Haha, snazzy Pottus


Re: 3D text not showing. - moof2010 - 17.11.2013

i have an warnimg

Код:
(231) : warning 213: tag mismatch
Код:
casa1 = Create3DTextLabel("text",0x008080FF, 1496.476, -690.257, 94.995, 40, 0, 0);



Re: 3D text not showing. - erminpr0 - 17.11.2013

Quote:
Originally Posted by moof2010
Посмотреть сообщение
i have an warnimg

Код:
(231) : warning 213: tag mismatch
Код:
casa1 = Create3DTextLabel("text",0x008080FF, 1496.476, -690.257, 94.995, 40, 0, 0);
'casa1' should be a Text3D variable

pawn Код:
new Text3D: casa1;