2014-02-25, 06:52 PM
You need a hierarchy of switches. The order should be based on Venn-diangram style possibilities or you can draw the classic logic diagram.
Something like
Something like
Code:
if (master = 0)
{
if (gear = P)
{
if (inside stuff) {}
if (outsides stuff) {}
if (dashboard stuff) {}//not necessarily in this order
}
}
