Skip to content

Conditional Action Dictionary

Ryan Guo edited this page Dec 15, 2015 · 4 revisions
[
  {  // first if clause
    "If":{
      // Condition Dictionary, see Condition-Dictionary-Evaluation
    },
    "Do":{
      // Action Dictionary, see Action-Dictionary
    },
    "Continue":true // should continue if this clause succeed, default to false
  },
  {  // second if clause
    // ....
  },
  {  // default clause
    "Do":{ }
  }
]
Clone this wiki locally