A rule-based AI doesn't think or learn — it follows a list of IF → THEN rules.
These rules are made of conditions and actions.
The agent checks its sensors, finds the first matching rule, and executes the action.
The agent uses sensors to detect its environment and figure out the conditions in your IF statements.
The THEN side of a rule tells the agent what action to take when a condition matches. Rules are checked from top to bottom — order matters!
Working together, you'll build an AI agent using IF→THEN rules, then compete head-to-head with different strategies on an identical parkour map.
Before that, you'll get more practice to better understand rule-based systems!