how to add text?

can any of you please explain to me how to add text (dialogs) to my game?

If the answer is simple as this then someone will scream at you very soon.

AAAGGHHHH!
JK, that looks right to me…

the thing is. i didn’t really understand this tutorial. so i thought there might be another way.
because i really didn’t understand how, by changing the property i change the texture of the plane.

For easy change ‘text line’, used is:

cont = GameLogic.getCurrentController()
own = cont.getOwner()

if own.t==0:
own.Text=(“7191 Year”)

if own.t==10:
own.Text=(“Text1”)

if own.t==20:
own.Text=(“Text2”)

if own.t==30:
own.Text=(“Text3”)

if own.t==40:
own.Text=(“Text4.”)

if own.t==50:
own.Text=(“Text5”)

and etc…
t-is Time; own.Text-property.

Could you explain exactly what confused you in the tutorial? The only other way to have text is through the use of python, but if it’s tough to understand this tutorial, I don’t imagine python to be easier. If you could put some detail about what you’re having trouble with down, it would make it much easier for us to help you.