Larger 3D Labels? - 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: Larger 3D Labels? (
/showthread.php?tid=626536)
Larger 3D Labels? -
FFAKO - 16.01.2017
As you see at title is it possible to make 3d labels larger and if its impossible how to turn then into sign on car like this(ss isnt mine)
http://s16.postimg.org/c1l2q8gx1/sa_mp_001.png
Re: Larger 3D Labels? -
Amads - 16.01.2017
That's not a 3D label, it's an object with
https://sampwiki.blast.hk/wiki/SetObjectMaterialText used.
Re: Larger 3D Labels? -
FFAKO - 17.01.2017
so can you give some help to me heres my code i want to turn text to object?
CMD

laka(playerid,params[])
{
new plaka[33];
if (sscanf(params, "s[30]", plaka)) SendClientMessage(playerid,-1,"Kullanım: /plaka <plakaniz>");
{
new Text3D:aplaka;
aplaka = Create3DTextLabel(plaka, 0x000000FF, 0.0, -100.0, -10000.0, 10.0, 0, 1 );
SetVehicleNumberPlate(GetPlayerVehicleID(playerid) , plaka);
Attach3DTextLabelToVehicle(aplaka,GetPlayerVehicle ID(playerid), 0, -2.75, -0.10);
}
return 1;
}