notdefix
First time out of the vault

Hi,
I'm trying to set up some dialog. From what I gathered there is the following options to make a critter say something:
However, the above options all point directly to a message number and only show one message: if I call gSay_Reply(...); more than once, only the last message is shown.
How do I show a message concatenated from several parts?
I'm trying to set up some dialog. From what I gathered there is the following options to make a critter say something:
Code:
Reply(msg_num); -> alias for: gSay_Reply(NAME, msg_num);
gSay_Message(msg_list, msg_num, reaction); -> not sure how this differs from gSay_Reply(...); last argument is maybe pointer to critter?
gSay_Reply(msg_list, msg_num);
However, the above options all point directly to a message number and only show one message: if I call gSay_Reply(...); more than once, only the last message is shown.
How do I show a message concatenated from several parts?