Page 1 of 1

How do you change text without changing actor?

PostPosted: Wed Oct 03, 2007 3:01 am
by NUTINC
Since there are too many forum posts on health text bars. :(
finding a post about changine cutscene text is pretty much impossible for me.
Anyone know how? or if there actually is a post could you link to it?
TANK YOU!

Re: How do you change text without changing actor?

PostPosted: Wed Oct 03, 2007 9:23 pm
by Rux
I do. There are two ways. If out of script editor: Choose an event and choose SET TEXT Action then fill out the info and there you go! In Script Editor: This is harder. There is no set text function in script editor, so how do you change text? Da da da DA!Thats where "strcpy" comes in!Make an event and in script editor,
Code: Select all
strcpy(//Name of the text actor that changes\\.text, "//Whatever you want the text to say\\");
This works. Try it

Re: How do you change text without changing actor?

PostPosted: Wed Oct 03, 2007 11:53 pm
by NUTINC
:mrgreen: point!

Re: How do you change text without changing actor?

PostPosted: Thu Oct 04, 2007 1:24 am
by Rux
Thanks