SA-MP Forums Archive
How can i have it? text on ground/wall - 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: How can i have it? text on ground/wall (/showthread.php?tid=436406)



How can i have it? text on ground/wall - manish123 - 11.05.2013

How can i have it? text on ground/wall EX:




Re: How can i have it? text on ground/wall - QuaTTrO - 11.05.2013

Use: SetPlayerObjectMaterialText/SetObjectMaterialText


Re: How can i have it? text on ground/wall - manish123 - 11.05.2013

Can you show me? how can i do that?


Re: How can i have it? text on ground/wall - BigGroter - 11.05.2013

With dynamic objects:
pawn Код:
new objectTest; // top of the script
objectTest = CreateDynamicObject(19353,x,y,z,0,0,0,0,0,0,200.0); //under gamemodeinit
SetDynamicObjectMaterialText(objectTest,0, "your text here" , OBJECT_MATERIAL_SIZE_256x128, "Arial", 28,0,-1,0,OBJECT_MATERIAL_TEXT_ALIGN_CENTER);