PROBLEM WITH FORK CONDITION!!

Posts

Pages: 1
Hi,I'm recently working at my project..but i have a problem
i want to make an switched event to check if there is 3 event at the same positions
i've tried every possible ways but it always go for the forks
that have only two Branchs...
please help me!!
Try nesting, instead of branching. Nesting is placing one or more conditional branches inside another conditional branch. So, it's a branch within a branch.

I can't provide a screenshot, but here's a shot at illustrating it:

Let p1, p2, & p3; be the current event positions.
Let c1, c2, & c3; be the correct event positions.

--==Start==--

@> If p1 == c1;
@> . . . . If p2 == c2;
@> . . . . . . . . If p3 == c3;
@> . . . . . . . . . . . . "The Events are in correct position!"
@> . . . . . . . . <blank space>
@> . . . . . . . . End If
@> . . . . <blank space>
@> . . . . End If
@> <blank space>
@> End If

--==End==--

Shouldn't be hard to do, right?
That how should go..i was putting the page like this:

If Event 1 x=event 2 x
....Event 2 x=event 3 x
.........Event 1 x=event 3 x
..............Event 1 y=event 2 y
.................Event 2 y=event 3 y
......................Event 1 y=event 3 y


Thanks for the solution
Pages: 1