NPC chats and dialogs?

If you are a new Irrlicht Engine user, and have a newbie-question, this is the forum for you. You may also post general programming questions here.
Post Reply
Azrael

NPC chats and dialogs?

Post by Azrael »

How can I create chat dialogs that appear when talkign to a NPC? (for rpgs) also how can I create a start menu for my game in Irrlicht?
DarkWhoppy
Posts: 386
Joined: Thu Sep 25, 2003 12:43 pm
Contact:

Post by DarkWhoppy »

Create some type of Window when the user clicks on the model? (... hehe, gonna need to do some work for that :wink: ) Make sure there's static text on the window... as the message.
Programmer of the Irrlicht Scene Editor:
Homepage - Forum Thread
Version 2 on its way!!
yin nadie
Posts: 43
Joined: Wed Mar 31, 2004 1:03 pm
Location: Seville, Spain
Contact:

Post by yin nadie »

for my RPG I had to code the bubbles using the gui::IGUIFont class as base. and since i am masochistic and want a bubble that is partially transparent (even the text), it seems i will have to code a lot more

for the event handling... well, as i said i am completetely masochistic, and created my own scripting languaje. with it i can easily write things like:

if( Character.is_with( NPC ) ) Character.says ("Hello" );
Post Reply