Frictional Games Forum (read-only)

Full Version: Message after note
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hey guys, well, I guess the title says it all, how do I make a message at the bottom of the screen to appear after you've read a note?
I would guess the InteractCallback and setmessage or you just make the callback inside the note and then use SetMessage (if it is a callback func in notes)
(03-19-2012, 12:52 PM)SilentStriker Wrote: [ -> ]I would guess the InteractCallback and setmessage or you just make the callback inside the note and then use SetMessage (if it is a callback func in notes)
So you want me to combine.... oh Jesus...


It's not really combining, its just typing things, go in the notecallbackfunc and set there MESSAGE_1
then in your script type
void MESSAGE_1(string &in Entity)
{
SetMessage("category", "entry", time);
}
(03-19-2012, 04:58 PM)Stepper321 Wrote: [ -> ]It's not really combining, its just typing things, go in the notecallbackfunc and set there MESSAGE_1
then in your script type
void MESSAGE_1(string &in Entity)
{
SetMessage("category", "entry", time);
}
I know the message stuff but..... yea okay, gonna try and see if it works.. lol