Bully-Board

Bully Modding Section => Modding Questions/Help => Modding Questions/Help Archives => Topic started by: FaZe on June 16, 2013, 05:03:50 AM

Title: Text Print
Post by: FaZe on June 16, 2013, 05:03:50 AM
Can anybody help me, I want to know how to get the Red text print on the top of the screen when you run an lua script via arcrace1.lur, Thanks
Title: Re: Text Print
Post by: c00ld0c26 on June 16, 2013, 05:17:04 AM
Here is the command :

TextPrintString("Put Text here", 4, 1)

Make sure you make it Capped like it is. Also Make sure to keep the " " there or it wont work.
Title: Re: Text Print
Post by: FaZe on June 16, 2013, 05:20:28 AM
Thanks Dude, also do you have a clean arcrace1.lur, i will make a backup this time i promise.  also where do i put the print, ya know, in between which lines,
Title: Re: Text Print
Post by: c00ld0c26 on June 16, 2013, 05:39:15 AM
Under the MissionSetup = Function

U can do it like this :

MissionSetup = function()
Local (put all the locals)
TextPrintString("XXX's mod", 4,1)

But basicly u can put it everywhere u want under the MissionSetup = Function()
Title: Re: Text Print
Post by: FaZe on June 16, 2013, 05:55:44 AM
Thanks