Jump to content

Two conditions for a dialog - is it possible?


Wizard

Recommended Posts

Quote:
Originally written by Wizard:
Is it possible to have two different conditions for a dialog? Example:

state = 2;
nextstate = 3;
condition1 = get_flag(3,3) == 0;
condition2 = get_flag(4,4) == 0;

Can that be achieved?
Try.
Code:
condition1 = (get_flag(3,3) == 0) && (get_flag(4,4) == 0));
Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
×
×
  • Create New...