Problem with coversations

Post here if you have problems getting Reality Factory running on your machine. Please make sure you have the latest DirectX installed as well as updated drivers for your video & sound card before posting...
Post Reply
BigChris
Posts: 6
Joined: Fri May 21, 2010 9:48 pm

Problem with coversations

Post by BigChris »

Hello,

Slowly, my project grows (I don't want to call it game yet, because it is not fun to play (yet^^). Now, I was adding dialogs like described in the manual, but there's a problem: When using it, the old answers are still visible, so after two or three chosen options, it is a pretty chaos. So I want to know how to let these old ones dissapear.

Regards
BigChris
User avatar
QuestOfDreams
Site Admin
Posts: 1520
Joined: Sun Jul 03, 2005 11:12 pm
Location: Austria
Contact:

Re: Problem with coversations

Post by QuestOfDreams »

Currently you have to make a compromise. If you want to see the level in the background the screen will not get cleared during the conversation, that's what you are observing. What you can do is
a) use a background image for the area of the replies
b) clear the complete screen (to black)
BigChris
Posts: 6
Joined: Fri May 21, 2010 9:48 pm

Re: Problem with coversations

Post by BigChris »

OK, but wouldn't it be better to use a menu? Just for interest, what are the differences and how to make one?
User avatar
QuestOfDreams
Site Admin
Posts: 1520
Joined: Sun Jul 03, 2005 11:12 pm
Location: Austria
Contact:

Re: Problem with coversations

Post by QuestOfDreams »

Sorry, I don't understand your question. We were talking about a graphical glitch, right? What has a menu (what menu?) to do with that? :?:
BigChris
Posts: 6
Joined: Fri May 21, 2010 9:48 pm

Re: Problem with coversations

Post by BigChris »

I mean, instead of using "reply" in the script, why not use "MenuReply"? What are the differences?
User avatar
QuestOfDreams
Site Admin
Posts: 1520
Joined: Sun Jul 03, 2005 11:12 pm
Location: Austria
Contact:

Re: Problem with coversations

Post by QuestOfDreams »

When using the Reply method the player will have to select the reply by pressing one of the keys 1 - 9.
When using the MenuReply method the player will be able to select a reply with the mouse.
BigChris
Posts: 6
Joined: Fri May 21, 2010 9:48 pm

Re: Problem with coversations

Post by BigChris »

OK, I didn't know that. But how do I add a background to a normal conversation reply window? Is there any Command? I changed the filename in the Pawn.ini file as described in the manual, but somehow it doesn't help (as in: There is no background).
Thanks in Advance

BigChris
Allanon
Posts: 493
Joined: Mon Aug 29, 2005 8:23 am

Re: Problem with coversations

Post by Allanon »

Use this command in your script to disable transparent backgrounds:

Code: Select all

TransparentBackground(false);
Use this command in your script to use a custom background:

Code: Select all

CustomBackground(<filename>);
Post Reply