| | index,content |
| | 1,"""Please fill the blue container with the yellow cubes" |
| | start() |
| | while True: |
| | if thereIs('yellow cubes'): |
| | takeAndDrop('yellow cubes','blue container') |
| | stop() |
| | 2,"""Could you put the red pen in the drawer?" |
| | start() |
| | while True: |
| | if thereIs('red pen'): |
| | takeAndDrop('red pen','drawer') |
| | stop() |
| | 3,"""Make sure to place the green sphere inside the box" |
| | start() |
| | while True: |
| | if thereIs('green sphere'): |
| | takeAndDrop('green sphere','box') |
| | stop() |
| | 4,"""Please add the white ball to the container" |
| | start() |
| | while True: |
| | if thereIs('white ball'): |
| | takeAndDrop('white ball','container') |
| | stop() |
| | 5,"""Place the orange cube in the designated area, please" |
| | start() |
| | while True: |
| | if thereIs('orange cube'): |
| | takeAndDrop('orange cube','designated area') |
| | stop() |
| | 6,"""I request you to fill the purple box with the silver objects" |
| | start() |
| | while True: |
| | if thereIs('silver objects'): |
| | takeAndDrop('silver objects','purple box') |
| | stop() |
| | 7,"""Please place the green ball in the round container" |
| | start() |
| | while True: |
| | if thereIs('green ball'): |
| | takeAndDrop('green ball','round container') |
| | stop() |
| | 8,"""Could you fill the yellow cup with the pink liquid?" |
| | start() |
| | while True: |
| | if thereIs('pink liquid'): |
| | takeAndDrop('pink liquid','yellow cup') |
| | stop() |
| | 9,"""I need you to put the blue bag on the shelf, please" |
| | start() |
| | while True: |
| | if thereIs('blue bag'): |
| | takeAndDrop('blue bag','shelf') |
| | stop() |
| | 10,"""Please fill the transparent bottle with the orange liquid" |
| | start() |
| | while True: |
| | if thereIs('orange liquid'): |
| | takeAndDrop('orange liquid','transparent bottle') |
| | stop() |
| | 11,"""Make sure to put the green cube in the square box" |
| | start() |
| | while True: |
| | if thereIs('green cube'): |
| | takeAndDrop('green cube','square box') |
| | stop() |
| | 12,"""Could you please place the red ball inside the cylinder?" |
| | start() |
| | while True: |
| | if thereIs('red ball'): |
| | takeAndDrop('red ball','cylinder') |
| | stop() |
| | 13,"""Put the small yellow cube in the box, please" |
| | start() |
| | while True: |
| | if thereIs('small yellow cube'): |
| | takeAndDrop('small yellow cube','box') |
| | stop() |
| | 14,"""Please fill the rectangular container with the blue objects" |
| | start() |
| | while True: |
| | if thereIs('blue objects'): |
| | takeAndDrop('blue objects','rectangular container') |
| | stop() |
| | 15,"""Make sure to put the purple ball in the designated spot" |
| | start() |
| | while True: |
| | if thereIs('purple ball'): |
| | takeAndDrop('purple ball','designated spot') |
| | stop() |
| | 16,"""Could you please add the silver object to the container?" |
| | start() |
| | while True: |
| | if thereIs('silver object'): |
| | takeAndDrop('silver object','container') |
| | stop() |
| | 17,"""Please place the green sphere in the round box" |
| | start() |
| | while True: |
| | if thereIs('green sphere'): |
| | takeAndDrop('green sphere','round box') |
| | stop() |
| | 18,"""Put the yellow liquid in the empty cup, please" |
| | start() |
| | while True: |
| | if thereIs('yellow liquid'): |
| | takeAndDrop('yellow liquid','empty cup') |
| | stop() |
| | 19,"""I request you to place the purple bag on the top shelf" |
| | start() |
| | while True: |
| | if thereIs('purple bag'): |
| | takeAndDrop('purple bag','top shelf') |
| | stop() |
| | 20,"""Please fill the round bottle with the green liquid" |
| | start() |
| | while True: |
| | if thereIs('green liquid'): |
| | takeAndDrop('green liquid','round bottle') |
| | stop() |
| | 21,"""Fill the blue container with nuts" |
| | start() |
| | while True: |
| | if thereIs('nuts'): |
| | takeAndDrop('nuts','blue container') |
| | stop() |
| | 22,"""Place the black boxes on the conveyor belt" |
| | start() |
| | while True: |
| | if thereIs('black boxes'): |
| | takeAndDrop('black boxes','conveyor belt') |
| | stop() |
| | 23,"""Load the metal sheets into the truck" |
| | start() |
| | while True: |
| | if thereIs('metal sheets'): |
| | takeAndDrop('metal sheets','truck') |
| | stop() |
| | 24,"""Stack the wooden crates in the storage area" |
| | start() |
| | while True: |
| | if thereIs('wooden crates'): |
| | takeAndDrop('wooden crates','storage area') |
| | stop() |
| | 25,"""Place the plastic containers on the assembly line" |
| | start() |
| | while True: |
| | if thereIs('plastic containers'): |
| | takeAndDrop('plastic containers','assembly line') |
| | stop() |
| | 26,"""Load the boxes onto the pallets" |
| | start() |
| | while True: |
| | if thereIs('boxes'): |
| | takeAndDrop('boxes','pallets') |
| | stop() |
| | 27,"""Put the electronic components into the testing machine" |
| | start() |
| | while True: |
| | if thereIs('electronic components'): |
| | takeAndDrop('electronic components','testing machine') |
| | stop() |
| | 28,"""Fill the bins with screws and washers" |
| | start() |
| | while True: |
| | if thereIs('screws and washers'): |
| | takeAndDrop('screws and washers','bins') |
| | stop() |
| | 29,"""Place the small parts onto the conveyor belt" |
| | start() |
| | while True: |
| | if thereIs('small parts'): |
| | takeAndDrop('small parts','conveyor belt') |
| | stop() |
| | 30,"""Load the raw materials into the storage containers" |
| | start() |
| | while True: |
| | if thereIs('raw materials'): |
| | takeAndDrop('raw materials','storage containers') |
| | stop() |
| | 31,"""Take the books from the shelf and place them on the desk" |
| | start() |
| | while True: |
| | if thereIs('book on shelf'): |
| | takeAndDrop('book','desk') |
| | stop() |
| | 32,"""Collect all the pencils from the table and put them in the drawer" |
| | start() |
| | while True: |
| | if thereIs('pencil on table'): |
| | takeAndDrop('pencil','drawer') |
| | stop() |
| | 33,"""Grab the markers and store them in the cabinet" |
| | start() |
| | while True: |
| | if thereIs('marker'): |
| | takeAndDrop('marker','cabinet') |
| | stop() |
| | 34,"""Place the notebooks on the shelf one by one" |
| | start() |
| | while True: |
| | if thereIs('notebook'): |
| | takeAndDrop('notebook','shelf') |
| | stop() |
| | 35,"""Take the erasers from the drawer and distribute them on the tables" |
| | start() |
| | while True: |
| | if thereIs('eraser in drawer'): |
| | takeAndDrop('eraser','table') |
| | stop() |
| | 36,"""Pick up all the textbooks from the floor and stack them on the bookshelf" |
| | start() |
| | while True: |
| | if thereIs('textbook on floor'): |
| | takeAndDrop('textbook','bookshelf') |
| | stop() |
| | 37,"""Collect the rulers from the desks and place them in the drawer" |
| | start() |
| | while True: |
| | if thereIs('ruler on desk'): |
| | takeAndDrop('ruler','drawer') |
| | stop() |
| | 38,"""Move all the calculators from the table to the cabinet" |
| | start() |
| | while True: |
| | if thereIs('calculator on table'): |
| | takeAndDrop('calculator','cabinet') |
| | stop() |
| | 39,"""Gather the colored pencils from the shelves and bring them to the art corner" |
| | start() |
| | while True: |
| | if thereIs('colored pencil on shelf'): |
| | takeAndDrop('colored pencil','art corner') |
| | stop() |
| | 40,"""Put the glue sticks in the drawer and organize them neatly" |
| | start() |
| | while True: |
| | if thereIs('glue stick'): |
| | takeAndDrop('glue stick','drawer') |
| | stop() |
| | 41,"""Fill the pot with water and place it on the stove" |
| | start() |
| | while True: |
| | if thereIs('water'): |
| | takeAndDrop('water','pot') |
| | fill('pot', 'water') |
| | place('pot', 'stove') |
| | stop() |
| | 42,"""Take the knife from the drawer and place it on the cutting board" |
| | start() |
| | while True: |
| | if thereIs('knife'): |
| | takeAndDrop('knife','drawer') |
| | place('knife', 'cutting board') |
| | stop() |
| | 43,"""Pick up the vegetables and put them in the salad bowl" |
| | start() |
| | while True: |
| | if thereIs('vegetables'): |
| | takeAndDrop('vegetables','counter') |
| | chop('vegetables') |
| | put('chopped vegetables','salad bowl') |
| | stop() |
| | 44,"""Get the baking tray and line it with parchment paper" |
| | start() |
| | while True: |
| | if thereIs('baking tray'): |
| | takeAndDrop('baking tray','cupboard') |
| | lineWith('parchment paper', 'baking tray') |
| | stop() |
| | 45,"""Bring the mixer and attach the beater attachment" |
| | start() |
| | while True: |
| | if thereIs('mixer'): |
| | takeAndDrop('mixer','shelf') |
| | attach('beater attachment', 'mixer') |
| | stop() |
| | 46,"""Take a plate and place it next to the stove" |
| | start() |
| | while True: |
| | if thereIs('plate'): |
| | takeAndDrop('plate','cabinet') |
| | place('plate', 'stove') |
| | stop() |
| | 47,"""Fill the glass with milk from the fridge" |
| | start() |
| | while True: |
| | if thereIs('glass'): |
| | takeAndDrop('glass','shelf') |
| | fill('glass', 'milk', 'fridge') |
| | stop() |
| | 48,"""Grab a bowl and place it on the countertop" |
| | start() |
| | while True: |
| | if thereIs('bowl'): |
| | takeAndDrop('bowl','cupboard') |
| | place('bowl', 'countertop') |
| | stop() |
| | 49,"""Take a spoon and stir the soup in the pot" |
| | start() |
| | while True: |
| | if thereIs('spoon'): |
| | takeAndDrop('spoon','drawer') |
| | stir('soup', 'pot') |
| | stop() |
| | 50,"""Get a baking sheet and spread the cookie dough on it" |
| | start() |
| | while True: |
| | if thereIs('baking sheet'): |
| | takeAndDrop('baking sheet','pantry') |
| | spread('cookie dough', 'baking sheet') |
| | stop() |
| | 51,"""Please fill the blue container with the red cubes." |
| | start() |
| | while True: |
| | if thereIs('red cube'): |
| | takeAndDrop('red cube','blue container') |
| | stop() |
| | 52,"""Put the green spheres into the transparent box." |
| | start() |
| | while True: |
| | if thereIs('green sphere'): |
| | takeAndDrop('green sphere','transparent box') |
| | stop() |
| | 53,"""Fill the metal crate with the wooden blocks, please." |
| | start() |
| | while True: |
| | if thereIs('wooden block'): |
| | takeAndDrop('wooden block','metal crate') |
| | stop() |
| | 54,"""Please place all the plastic triangles into the yellow box." |
| | start() |
| | while True: |
| | if thereIs('plastic triangle'): |
| | takeAndDrop('plastic triangle','yellow box') |
| | stop() |
| | 55,"""Could you put the square objects into the black container, please?" |
| | start() |
| | while True: |
| | if thereIs('square object'): |
| | takeAndDrop('square object','black container') |
| | stop() |
| | 56,"""Fill the white box with the round items, please." |
| | start() |
| | while True: |
| | if thereIs('round item'): |
| | takeAndDrop('round item','white box') |
| | stop() |
| | 57,"""Put the small triangles into the pink container." |
| | start() |
| | while True: |
| | if thereIs('small triangle'): |
| | takeAndDrop('small triangle','pink container') |
| | stop() |
| | 58,"""Please fill the cardboard box with the rectangular blocks." |
| | start() |
| | while True: |
| | if thereIs('rectangular block'): |
| | takeAndDrop('rectangular block','cardboard box') |
| | stop() |
| | 59,"""Place all the circular objects into the green container, please." |
| | start() |
| | while True: |
| | if thereIs('circular object'): |
| | takeAndDrop('circular object','green container') |
| | stop() |
| | 60,"""Fill the orange box with the triangular items." |
| | start() |
| | while True: |
| | if thereIs('triangular item'): |
| | takeAndDrop('triangular item','orange box') |
| | stop() |
| | 61,"""Could you put the large rectangles into the violet container, please?" |
| | start() |
| | while True: |
| | if thereIs('large rectangle'): |
| | takeAndDrop('large rectangle','violet container') |
| | stop() |
| | 62,"""Please place the oval objects into the brown box." |
| | start() |
| | while True: |
| | if thereIs('oval object'): |
| | takeAndDrop('oval object','brown box') |
| | stop() |
| | 63,"""Fill the transparent container with the small squares, please." |
| | start() |
| | while True: |
| | if thereIs('small square'): |
| | takeAndDrop('small square','transparent container') |
| | stop() |
| | 64,"""Put all the hexagonal items into the blue box." |
| | start() |
| | while True: |
| | if thereIs('hexagonal item'): |
| | takeAndDrop('hexagonal item','blue box') |
| | stop() |
| | 65,"""Could you fill the yellow container with the transparent spheres, please?" |
| | start() |
| | while True: |
| | if thereIs('transparent sphere'): |
| | takeAndDrop('transparent sphere','yellow container') |
| | stop() |
| | 66,"""Please place the wooden triangles into the green box." |
| | start() |
| | while True: |
| | if thereIs('wooden triangle'): |
| | takeAndDrop('wooden triangle','green box') |
| | stop() |
| | 67,"""Fill the pink container with the metal circles, please." |
| | start() |
| | while True: |
| | if thereIs('metal circle'): |
| | takeAndDrop('metal circle','pink container') |
| | stop() |
| | 68,"""Put all the black squares into the red box." |
| | start() |
| | while True: |
| | if thereIs('black square'): |
| | takeAndDrop('black square','red box') |
| | stop() |
| | 69,"""Please fill the wooden crate with the blue triangles." |
| | start() |
| | while True: |
| | if thereIs('blue triangle'): |
| | takeAndDrop('blue triangle','wooden crate') |
| | stop() |
| | 70,"""Could you put the metal rectangles into the transparent box, please?" |
| | start() |
| | while True: |
| | if thereIs('metal rectangle'): |
| | takeAndDrop('metal rectangle','transparent box') |
| | stop() |
| | 71,"""Start the process and continuously check if there is a blue sphere. If so, fill the red box with the blue sphere." |
| | start() |
| | while True: |
| | if thereIs('blue sphere'): |
| | takeAndDrop('blue sphere','red box') |
| | stop() |
| | 72,"""Activate the system and keep checking for any pens you see. If there are pens, fill the box with them." |
| | start() |
| | while True: |
| | if thereIs('pen'): |
| | takeAndDrop('pen','box') |
| | stop() |
| | 73,"""Initiate the process and continuously monitor for any rubber bands. If found, place them in an open hand." |
| | start() |
| | while True: |
| | if thereIs('rubber band'): |
| | takeAndDrop('rubber band','open hand') |
| | stop() |
| | 74,"""You need to fill the carton with all the cubes you come across. Begin the task and keep checking for cubes to place in the carton." |
| | start() |
| | while True: |
| | if thereIs('cube'): |
| | takeAndDrop('cube','carton') |
| | stop() |
| | 75,"""Commence the process and continuously check for any objects in the green area. If there is an object, transfer it to the box." |
| | start() |
| | while True: |
| | if thereIs('object in green area'): |
| | takeAndDrop('object in green area','box') |
| | stop() |
| | 76,"""If a phone is detected, retrieve it and position it in the red area. Begin the task and continuously monitor for phones." |
| | start() |
| | while True: |
| | if thereIs('phone'): |
| | takeAndDrop('phone','red area') |
| | stop() |
| | 77,"""When a lego block is present in the red zone, pick it up and hand it over to me. Initiate the process and continuously monitor for lego blocks in the red zone." |
| | start() |
| | while True: |
| | if thereIs('lego block in red zone'): |
| | takeAndDrop('lego block in red zone','open hand') |
| | stop() |
| | 78,"""Take the cups and place them in the blue box. In addition, fill the red box with books. Start the process and continuously check for cups and books." |
| | start() |
| | while True: |
| | if thereIs('cup'): |
| | takeAndDrop('cup','blue box') |
| | if thereIs('book'): |
| | takeAndDrop('book','red box') |
| | stop() |
| | 79,"""Collect all the telephones and store them in the box. Furthermore, place all the transformers in the carton. Activate the system and continuously check for telephones and transformers." |
| | start() |
| | while True: |
| | if thereIs('phone'): |
| | takeAndDrop('phone','box') |
| | if thereIs('transformer'): |
| | takeAndDrop('transformer','carton') |
| | stop() |
| | 80,"""Fill the pencil case with pens" |
| | start() |
| | while True: |
| | if thereIs('pen'): |
| | takeAndDrop('pen','pencil case') |
| | stop() |
| | 81,"""Put all the textbooks on the bookshelf" |
| | start() |
| | while True: |
| | if thereIs('textbook'): |
| | takeAndDrop('textbook','bookshelf') |
| | stop() |
| | 82,"""Arrange the art supplies in the drawer" |
| | start() |
| | while True: |
| | if thereIs('art supply'): |
| | takeAndDrop('art supply','drawer') |
| | stop() |
| | 83,"""Place all the calculators in the storage box" |
| | start() |
| | while True: |
| | if thereIs('calculator'): |
| | takeAndDrop('calculator','storage box') |
| | stop() |
| | 84,"""Store the markers in the pen holder" |
| | start() |
| | while True: |
| | if thereIs('marker'): |
| | takeAndDrop('marker','pen holder') |
| | stop() |
| | 85,"""Fill the backpack with notebooks and textbooks" |
| | start() |
| | while True: |
| | if thereIs('notebook'): |
| | takeAndDrop('notebook','backpack') |
| | if thereIs('textbook'): |
| | takeAndDrop('textbook','backpack') |
| | stop() |
| | 86,"""Put all the erasers in the pencil case" |
| | start() |
| | while True: |
| | if thereIs('eraser'): |
| | takeAndDrop('eraser','pencil case') |
| | stop() |
| | 87,"""Arrange the colored pencils in the drawer" |
| | start() |
| | while True: |
| | if thereIs('colored pencil'): |
| | takeAndDrop('colored pencil','drawer') |
| | stop() |
| | 88,"""Store all the glue sticks in the storage box" |
| | start() |
| | while True: |
| | if thereIs('glue stick'): |
| | takeAndDrop('glue stick','storage box') |
| | stop() |
| | 89,"""Place the scissors and rulers in the pen holder" |
| | start() |
| | while True: |
| | if thereIs('scissors'): |
| | takeAndDrop('scissors','pen holder') |
| | if thereIs('ruler'): |
| | takeAndDrop('ruler','pen holder') |
| | stop() |
| | 90,"""Fill the cookie jar with chocolate chips." |
| | start() |
| | while True: |
| | if thereIs('chocolate chips'): |
| | takeAndDrop('chocolate chips','cookie jar') |
| | stop() |
| | 91,"""Take the bread and place it on the cutting board." |
| | start() |
| | while True: |
| | if thereIs('bread'): |
| | takeAndDrop('bread','cutting board') |
| | stop() |
| | 92,"""Put the knife inside the drawer." |
| | start() |
| | while True: |
| | if thereIs('knife'): |
| | takeAndDrop('knife','drawer') |
| | stop() |
| | 93,"""Fill the pot with water from the tap." |
| | start() |
| | while True: |
| | if thereIs('water'): |
| | takeAndDrop('water','pot') |
| | stop() |
| | 94,"""Place the cooking oil bottle next to the stove." |
| | start() |
| | while True: |
| | if thereIs('cooking oil bottle'): |
| | takeAndDrop('cooking oil bottle','stove') |
| | stop() |
| | 95,"""Fill the cup with milk and place it on the table." |
| | start() |
| | while True: |
| | if thereIs('milk'): |
| | takeAndDrop('milk','cup') |
| | takeAndDrop('cup','table') |
| | stop() |
| | 96,"""Take the frying pan and heat it on the stove." |
| | start() |
| | while True: |
| | if thereIs('frying pan'): |
| | takeAndDrop('frying pan','stove') |
| | stop() |
| | 97,"""Put the spoon inside the utensil drawer." |
| | start() |
| | while True: |
| | if thereIs('spoon'): |
| | takeAndDrop('spoon','utensil drawer') |
| | stop() |
| | 98,"""Fill the sink with water and soap." |
| | start() |
| | while True: |
| | if thereIs('water'): |
| | takeAndDrop('water','sink') |
| | if thereIs('soap'): |
| | takeAndDrop('soap','sink') |
| | stop() |
| | 99,"""Take the cutting board and put it on the counter." |
| | start() |
| | while True: |
| | if thereIs('cutting board'): |
| | takeAndDrop('cutting board','counter') |
| | stop() |
| | 100,"""Fill the green box with the yellow cubes." |
| | start() |
| | while True: |
| | if thereIs('yellow cube'): |
| | takeAndDrop('yellow cube', 'green box') |
| | stop() |
| | 101,"""Take the red sphere and place it in the blue container." |
| | start() |
| | while True: |
| | if thereIs('red sphere'): |
| | takeAndDrop('red sphere', 'blue container') |
| | stop() |
| | 102,"""Transfer all the pens to the pink box." |
| | start() |
| | while True: |
| | if thereIs('pen'): |
| | takeAndDrop('pen', 'pink box') |
| | stop() |
| | 103,"""Place the white cube in the transparent bin." |
| | start() |
| | while True: |
| | if thereIs('white cube'): |
| | takeAndDrop('white cube', 'transparent bin') |
| | stop() |
| | 104,"""Put all the books inside the wooden chest." |
| | start() |
| | while True: |
| | if thereIs('book'): |
| | takeAndDrop('book', 'wooden chest') |
| | stop() |
| | 105,"""Store the black sphere in the metal box." |
| | start() |
| | while True: |
| | if thereIs('black sphere'): |
| | takeAndDrop('black sphere', 'metal box') |
| | stop() |
| | 106,"""Fill the yellow bag with all the toys." |
| | start() |
| | while True: |
| | if thereIs('toy'): |
| | takeAndDrop('toy', 'yellow bag') |
| | stop() |
| | 107,"""Transfer the purple cubes to the large container." |
| | start() |
| | while True: |
| | if thereIs('purple cube'): |
| | takeAndDrop('purple cube', 'large container') |
| | stop() |
| | 108,"""Put the green sphere into the small box." |
| | start() |
| | while True: |
| | if thereIs('green sphere'): |
| | takeAndDrop('green sphere', 'small box') |
| | stop() |
| | 109,"""Place all the pencils inside the transparent bag." |
| | start() |
| | while True: |
| | if thereIs('pencil'): |
| | takeAndDrop('pencil', 'transparent bag') |
| | stop() |
| | 110,"""Fill the red container with the blue objects." |
| | start() |
| | while True: |
| | if thereIs('blue object'): |
| | takeAndDrop('blue object', 'red container') |
| | stop() |
| | 111,"""Transfer the yellow cubes to the wooden crate." |
| | start() |
| | while True: |
| | if thereIs('yellow cube'): |
| | takeAndDrop('yellow cube', 'wooden crate') |
| | stop() |
| | 112,"""Put all the erasers into the blue box." |
| | start() |
| | while True: |
| | if thereIs('eraser'): |
| | takeAndDrop('eraser', 'blue box') |
| | stop() |
| | 113,"""Store the green cubes in the clear container." |
| | start() |
| | while True: |
| | if thereIs('green cube'): |
| | takeAndDrop('green cube', 'clear container') |
| | stop() |
| | 114,"""Fill the small bag with all the red toys." |
| | start() |
| | while True: |
| | if thereIs('red toy'): |
| | takeAndDrop('red toy', 'small bag') |
| | stop() |
| | 115,"""Place the blue sphere in the empty box." |
| | start() |
| | while True: |
| | if thereIs('blue sphere'): |
| | takeAndDrop('blue sphere', 'empty box') |
| | stop() |
| | 116,"""Transfer all the markers to the purple container." |
| | start() |
| | while True: |
| | if thereIs('marker'): |
| | takeAndDrop('marker', 'purple container') |
| | stop() |
| | 117,"""Put the yellow ball in the small box." |
| | start() |
| | while True: |
| | if thereIs('yellow ball'): |
| | takeAndDrop('yellow ball', 'small box') |
| | stop() |
| | 118,"""Store all the red objects in the large bin." |
| | start() |
| | while True: |
| | if thereIs('red object'): |
| | takeAndDrop('red object', 'large bin') |
| | stop() |
| | 119,"""Fill the blue container with all the orange items." |
| | start() |
| | while True: |
| | if thereIs('orange item'): |
| | takeAndDrop('orange item', 'blue container') |
| | stop() |
| | 120,"""Please place the blue cylinder inside the yellow box." |
| | start() |
| | while True: |
| | if thereIs('blue cylinder'): |
| | takeAndDrop('blue cylinder', 'yellow box') |
| | stop() |
| | 121,"""Grab the red cube and stack it on top of the green pyramid." |
| | start() |
| | while True: |
| | if thereIs('red cube'): |
| | takeAndDrop('red cube', 'green pyramid') |
| | stop() |
| | 122,"""Place the small yellow sphere next to the big blue sphere." |
| | start() |
| | while True: |
| | if thereIs('small yellow sphere'): |
| | takeAndDrop('small yellow sphere', 'big blue sphere') |
| | stop() |
| | 123,"""Arrange the small red cubes in a line from left to right." |
| | start() |
| | while True: |
| | if thereIs('small red cube'): |
| | takeAndDrop('small red cube', 'left of previous cube') |
| | stop() |
| | 124,"""Position the blue cylinder on top of the yellow cube." |
| | start() |
| | while True: |
| | if thereIs('blue cylinder'): |
| | takeAndDrop('blue cylinder', 'on top of yellow cube') |
| | stop() |
| | 125,"""Put the green sphere inside the transparent box." |
| | start() |
| | while True: |
| | if thereIs('green sphere'): |
| | takeAndDrop('green sphere', 'transparent box') |
| | stop() |
| | 126,"""Stack the red cubes on top of each other in a pyramid shape." |
| | start() |
| | while True: |
| | if thereIs('red cube'): |
| | takeAndDrop('red cube', 'on top of previous cube') |
| | stop() |
| | 127,"""Place the small blue cube next to the big yellow cube." |
| | start() |
| | while True: |
| | if thereIs('small blue cube'): |
| | takeAndDrop('small blue cube', 'big yellow cube') |
| | stop() |
| | 128,"""Put the green pyramid on top of the red cube." |
| | start() |
| | while True: |
| | if thereIs('green pyramid'): |
| | takeAndDrop('green pyramid', 'on top of red cube') |
| | stop() |
| | 129,"""Position the yellow sphere on top of the blue cube." |
| | start() |
| | while True: |
| | if thereIs('yellow sphere'): |
| | takeAndDrop('yellow sphere', 'on top of blue cube') |
| | stop() |
| | 130,"""Pick up the red pen and place it in the pencil case." |
| | start() |
| | while True: |
| | if thereIs('red pen'): |
| | takeAndDrop('red pen','pencil case') |
| | stop() |
| | 131,"""Put all the books on the shelf." |
| | start() |
| | while True: |
| | if thereIs('book'): |
| | takeAndDrop('book','shelf') |
| | stop() |
| | 132,"""Take the eraser and place it on the teacher's desk." |
| | start() |
| | while True: |
| | if thereIs('eraser'): |
| | takeAndDrop('eraser','teacher desk') |
| | stop() |
| | 133,"""Collect all the markers from the whiteboard and store them in the drawer." |
| | start() |
| | while True: |
| | if thereIs('marker'): |
| | takeAndDrop('marker','drawer') |
| | stop() |
| | 134,"""Gather the scissors and put them in the art supplies box." |
| | start() |
| | while True: |
| | if thereIs('scissors'): |
| | takeAndDrop('scissors','art supplies box') |
| | stop() |
| | 135,"""Take the ruler and place it inside the drawer of the desk." |
| | start() |
| | while True: |
| | if thereIs('ruler'): |
| | takeAndDrop('ruler','desk drawer') |
| | stop() |
| | 136,"""Put the textbooks back on the bookshelf." |
| | start() |
| | while True: |
| | if thereIs('textbook'): |
| | takeAndDrop('textbook','bookshelf') |
| | stop() |
| | 137,"""Place all the calculators in the drawer of the teacher's desk." |
| | start() |
| | while True: |
| | if thereIs('calculator'): |
| | takeAndDrop('calculator','teacher desk drawer') |
| | stop() |
| | 138,"""Pick up the colored pencils and put them in the art supplies box." |
| | start() |
| | while True: |
| | if thereIs('colored pencils'): |
| | takeAndDrop('colored pencils','art supplies box') |
| | stop() |
| | 139,"""Collect all the highlighters and store them in the drawer." |
| | start() |
| | while True: |
| | if thereIs('highlighter'): |
| | takeAndDrop('highlighter','drawer') |
| | stop() |
| | 140,"""Fill the coffee mug with hot water" |
| | start() |
| | while True: |
| | if thereIs('hot water'): |
| | takeAndDrop('hot water','coffee mug') |
| | stop() |
| | 141,"""Place the bread slices on the toaster" |
| | start() |
| | while True: |
| | if thereIs('bread slices'): |
| | takeAndDrop('bread slices','toaster') |
| | stop() |
| | 142,"""Put the plate in the dishwasher" |
| | start() |
| | while True: |
| | if thereIs('plate'): |
| | takeAndDrop('plate','dishwasher') |
| | stop() |
| | 143,"""Fill the kettle with water" |
| | start() |
| | while True: |
| | if thereIs('water'): |
| | takeAndDrop('water','kettle') |
| | stop() |
| | 144,"""Place the cutting board on the countertop" |
| | start() |
| | while True: |
| | if thereIs('cutting board'): |
| | takeAndDrop('cutting board','countertop') |
| | stop() |
| | 145,"""Fill the pot with boiling water" |
| | start() |
| | while True: |
| | if thereIs('boiling water'): |
| | takeAndDrop('boiling water','pot') |
| | stop() |
| | 146,"""Put the knife in the drawer" |
| | start() |
| | while True: |
| | if thereIs('knife'): |
| | takeAndDrop('knife','drawer') |
| | stop() |
| | 147,"""Place the mixing bowl on the kitchen counter" |
| | start() |
| | while True: |
| | if thereIs('mixing bowl'): |
| | takeAndDrop('mixing bowl','kitchen counter') |
| | stop() |
| | 148,"""Fill the saucepan with vegetable broth" |
| | start() |
| | while True: |
| | if thereIs('vegetable broth'): |
| | takeAndDrop('vegetable broth','saucepan') |
| | stop() |
| | 149,"""Put the frying pan on the stove" |
| | start() |
| | while True: |
| | if thereIs('frying pan'): |
| | takeAndDrop('frying pan','stove') |
| | stop() |
| | 150,"""Please bring me a pencil." |
| | start() |
| | while True: |
| | if thereIs('pencil'): |
| | takeAndDrop('pencil', 'open hand') |
| | stop() |
| | 151,"""Retrieve the yellow marker for me." |
| | start() |
| | while True: |
| | if thereIs('yellow marker'): |
| | takeAndDrop('yellow marker', 'open hand') |
| | stop() |
| | 152,"""I need you to bring me a book." |
| | start() |
| | while True: |
| | if thereIs('book'): |
| | takeAndDrop('book', 'open hand') |
| | stop() |
| | 153,"""Could you retrieve the red pen for me?" |
| | start() |
| | while True: |
| | if thereIs('red pen'): |
| | takeAndDrop('red pen', 'open hand') |
| | stop() |
| | 154,"""Please grab the blue marker and give it to me." |
| | start() |
| | while True: |
| | if thereIs('blue marker'): |
| | takeAndDrop('blue marker', 'open hand') |
| | stop() |
| | 155,"""Retrieve the eraser for me." |
| | start() |
| | while True: |
| | if thereIs('eraser'): |
| | takeAndDrop('eraser', 'open hand') |
| | stop() |
| | 156,"""Could you bring me a pencil case?" |
| | start() |
| | while True: |
| | if thereIs('pencil case'): |
| | takeAndDrop('pencil case', 'open hand') |
| | stop() |
| | 157,"""I need you to retrieve the black pen for me." |
| | start() |
| | while True: |
| | if thereIs('black pen'): |
| | takeAndDrop('black pen', 'open hand') |
| | stop() |
| | 158,"""Please grab the red marker and give it to me." |
| | start() |
| | while True: |
| | if thereIs('red marker'): |
| | takeAndDrop('red marker', 'open hand') |
| | stop() |
| | 159,"""Retrieve the highlighter for me." |
| | start() |
| | while True: |
| | if thereIs('highlighter'): |
| | takeAndDrop('highlighter', 'open hand') |
| | stop() |
| | 160,"""Could you bring me a sharpener?" |
| | start() |
| | while True: |
| | if thereIs('sharpener'): |
| | takeAndDrop('sharpener', 'open hand') |
| | stop() |
| | 161,"""I need you to retrieve the blue pen for me." |
| | start() |
| | while True: |
| | if thereIs('blue pen'): |
| | takeAndDrop('blue pen', 'open hand') |
| | stop() |
| | 162,"""Please grab the yellow highlighter and give it to me." |
| | start() |
| | while True: |
| | if thereIs('yellow highlighter'): |
| | takeAndDrop('yellow highlighter', 'open hand') |
| | stop() |
| | 163,"""Retrieve the pen case for me." |
| | start() |
| | while True: |
| | if thereIs('pen case'): |
| | takeAndDrop('pen case', 'open hand') |
| | stop() |
| | 164,"""Could you bring me a marker?" |
| | start() |
| | while True: |
| | if thereIs('marker'): |
| | takeAndDrop('marker', 'open hand') |
| | stop() |
| | 165,"""I need you to retrieve the green pen for me." |
| | start() |
| | while True: |
| | if thereIs('green pen'): |
| | takeAndDrop('green pen', 'open hand') |
| | stop() |
| | 166,"""Please grab the black marker and give it to me." |
| | start() |
| | while True: |
| | if thereIs('black marker'): |
| | takeAndDrop('black marker', 'open hand') |
| | stop() |
| | 167,"""Retrieve the whiteboard eraser for me." |
| | start() |
| | while True: |
| | if thereIs('whiteboard eraser'): |
| | takeAndDrop('whiteboard eraser', 'open hand') |
| | stop() |
| | 168,"""Could you bring me a red pen?" |
| | start() |
| | while True: |
| | if thereIs('red pen'): |
| | takeAndDrop('red pen', 'open hand') |
| | stop() |
| | 169,"""I need you to retrieve the green marker for me." |
| | start() |
| | while True: |
| | if thereIs('green marker'): |
| | takeAndDrop('green marker', 'open hand') |
| | stop() |
| | 170,"""Please grab the wrench and hand it over to me." |
| | start() |
| | while True: |
| | if thereIs('wrench'): |
| | takeAndDrop('wrench','open hand') |
| | stop() |
| | 171,"""Could you kindly pick up the screwdriver and pass it to me?" |
| | start() |
| | while True: |
| | if thereIs('screwdriver'): |
| | takeAndDrop('screwdriver','open hand') |
| | stop() |
| | 172,"""Retrieve the pliers and give them to me, please." |
| | start() |
| | while True: |
| | if thereIs('pliers'): |
| | takeAndDrop('pliers','open hand') |
| | stop() |
| | 173,"""I require the hammer, kindly hand it to me." |
| | start() |
| | while True: |
| | if thereIs('hammer'): |
| | takeAndDrop('hammer','open hand') |
| | stop() |
| | 174,"""Please grab the drill and pass it to me." |
| | start() |
| | while True: |
| | if thereIs('drill'): |
| | takeAndDrop('drill','open hand') |
| | stop() |
| | 175,"""Could you kindly pick up the wire cutters and give them to me?" |
| | start() |
| | while True: |
| | if thereIs('wire cutters'): |
| | takeAndDrop('wire cutters','open hand') |
| | stop() |
| | 176,"""Retrieve the tape measure and hand it over to me, please." |
| | start() |
| | while True: |
| | if thereIs('tape measure'): |
| | takeAndDrop('tape measure','open hand') |
| | stop() |
| | 177,"""I require the Allen wrench, kindly hand it to me." |
| | start() |
| | while True: |
| | if thereIs('Allen wrench'): |
| | takeAndDrop('Allen wrench','open hand') |
| | stop() |
| | 178,"""Please grab the chisel and pass it to me." |
| | start() |
| | while True: |
| | if thereIs('chisel'): |
| | takeAndDrop('chisel','open hand') |
| | stop() |
| | 179,"""Could you kindly pick up the adjustable wrench and give it to me?" |
| | start() |
| | while True: |
| | if thereIs('adjustable wrench'): |
| | takeAndDrop('adjustable wrench','open hand') |
| | stop() |
| | 180,"""Find all the textbooks and bring them to me" |
| | start() |
| | while True: |
| | if thereIs('textbook'): |
| | takeAndDrop('textbook', 'open hand') |
| | stop() |
| | 181,"""Retrieve all the pencils and hand them over to me" |
| | start() |
| | while True: |
| | if thereIs('pencil'): |
| | takeAndDrop('pencil', 'open hand') |
| | stop() |
| | 182,"""Collect all the erasers and give them to me" |
| | start() |
| | while True: |
| | if thereIs('eraser'): |
| | takeAndDrop('eraser', 'open hand') |
| | stop() |
| | 183,"""Locate the calculators and deliver them to me" |
| | start() |
| | while True: |
| | if thereIs('calculator'): |
| | takeAndDrop('calculator', 'open hand') |
| | stop() |
| | 184,"""Bring all the notebooks and hand them to me" |
| | start() |
| | while True: |
| | if thereIs('notebook'): |
| | takeAndDrop('notebook', 'open hand') |
| | stop() |
| | 185,"""Retrieve the markers and give them to me" |
| | start() |
| | while True: |
| | if thereIs('marker'): |
| | takeAndDrop('marker', 'open hand') |
| | stop() |
| | 186,"""Collect all the scissors and hand them over to me" |
| | start() |
| | while True: |
| | if thereIs('scissors'): |
| | takeAndDrop('scissors', 'open hand') |
| | stop() |
| | 187,"""Locate the rulers and deliver them to me" |
| | start() |
| | while True: |
| | if thereIs('ruler'): |
| | takeAndDrop('ruler', 'open hand') |
| | stop() |
| | 188,"""Bring all the glue sticks and hand them to me" |
| | start() |
| | while True: |
| | if thereIs('glue stick'): |
| | takeAndDrop('glue stick', 'open hand') |
| | stop() |
| | 189,"""Retrieve the compasses and give them to me" |
| | start() |
| | while True: |
| | if thereIs('compass'): |
| | takeAndDrop('compass', 'open hand') |
| | stop() |
| | 190,"""Pass me the knife please." |
| | start() |
| | while True: |
| | if thereIs('knife'): |
| | takeAndDrop('knife','open hand') |
| | stop() |
| | 191,"""Can you give me the spatula?" |
| | start() |
| | while True: |
| | if thereIs('spatula'): |
| | takeAndDrop('spatula','open hand') |
| | stop() |
| | 192,"""I need the whisk. Hand it over to me, please." |
| | start() |
| | while True: |
| | if thereIs('whisk'): |
| | takeAndDrop('whisk','open hand') |
| | stop() |
| | 193,"""Pass me the frying pan." |
| | start() |
| | while True: |
| | if thereIs('frying pan'): |
| | takeAndDrop('frying pan','open hand') |
| | stop() |
| | 194,"""Please hand me the cutting board." |
| | start() |
| | while True: |
| | if thereIs('cutting board'): |
| | takeAndDrop('cutting board','open hand') |
| | stop() |
| | 195,"""I require the tongs. Give them to me, please." |
| | start() |
| | while True: |
| | if thereIs('tongs'): |
| | takeAndDrop('tongs','open hand') |
| | stop() |
| | 196,"""Can you pass me the colander?" |
| | start() |
| | while True: |
| | if thereIs('colander'): |
| | takeAndDrop('colander','open hand') |
| | stop() |
| | 197,"""Hand me the rolling pin, please." |
| | start() |
| | while True: |
| | if thereIs('rolling pin'): |
| | takeAndDrop('rolling pin','open hand') |
| | stop() |
| | 198,"""I need the grater. Can you give it to me?" |
| | start() |
| | while True: |
| | if thereIs('grater'): |
| | takeAndDrop('grater','open hand') |
| | stop() |
| | 199,"""Pass me the measuring cup." |
| | start() |
| | while True: |
| | if thereIs('measuring cup'): |
| | takeAndDrop('measuring cup','open hand') |
| | stop() |
| | 200,"""When you see a cup in the kitchen, put it on the table" |
| | start() |
| | while True: |
| | if thereIs('cup in kitchen'): |
| | takeAndDrop('cup', 'table') |
| | stop() |
| | 201,"""If there are any books on the shelf, move them to the bookcase" |
| | start() |
| | while True: |
| | if thereIs('books on shelf'): |
| | takeAndDrop('books', 'bookcase') |
| | stop() |
| | 202,"""When the green light turns on, place all the bottles on the counter" |
| | start() |
| | while True: |
| | if thereIs('green light on'): |
| | takeAndDrop('bottles', 'counter') |
| | stop() |
| | 203,"""If you find any keys near the entrance, bring them to the key holder" |
| | start() |
| | while True: |
| | if thereIs('keys near entrance'): |
| | takeAndDrop('keys', 'key holder') |
| | stop() |
| | 204,"""Whenever you see a plate on the dining table, transfer it to the kitchen counter" |
| | start() |
| | while True: |
| | if thereIs('plate on dining table'): |
| | takeAndDrop('plate', 'kitchen counter') |
| | stop() |
| | 205,"""If any toys are left on the playmat, collect them and place them in the toy basket" |
| | start() |
| | while True: |
| | if thereIs('toys on playmat'): |
| | takeAndDrop('toys', 'toy basket') |
| | stop() |
| | 206,"""Whenever a towel is found in the bathroom, move it to the towel rack" |
| | start() |
| | while True: |
| | if thereIs('towel in bathroom'): |
| | takeAndDrop('towel', 'towel rack') |
| | stop() |
| | 207,"""If you come across any shoes in the hallway, place them on the shoe shelf" |
| | start() |
| | while True: |
| | if thereIs('shoes in hallway'): |
| | takeAndDrop('shoes', 'shoe shelf') |
| | stop() |
| | 208,"""When the yellow flag is raised, put all the hats on the hat stand" |
| | start() |
| | while True: |
| | if thereIs('yellow flag raised'): |
| | takeAndDrop('hats', 'hat stand') |
| | stop() |
| | 209,"""If you spot any paintings on the wall, move them to the art gallery" |
| | start() |
| | while True: |
| | if thereIs('paintings on wall'): |
| | takeAndDrop('paintings', 'art gallery') |
| | stop() |
| | 210,"""Whenever you see a bag on the chair, transfer it to the storage cupboard" |
| | start() |
| | while True: |
| | if thereIs('bag on chair'): |
| | takeAndDrop('bag', 'storage cupboard') |
| | stop() |
| | 211,"""If any buckets are left near the fountain, bring them to the gardening shed" |
| | start() |
| | while True: |
| | if thereIs('buckets near fountain'): |
| | takeAndDrop('buckets', 'gardening shed') |
| | stop() |
| | 212,"""When the clock strikes 3 o'clock, place all the books on the study table" |
| | start() |
| | while True: |
| | if thereIs('clock strikes 3 o'clock'): |
| | takeAndDrop('books', 'study table') |
| | stop()" |
| | 213,"""If you find any mugs on the kitchen counter, move them to the mug rack"" |
| | start() |
| | while True: |
| | if thereIs('mugs on kitchen counter'): |
| | takeAndDrop('mugs', 'mug rack') |
| | stop()" |
| | 214,"""Whenever there is a jacket on the couch, transfer it to the coat hanger"" |
| | start() |
| | while True: |
| | if thereIs('jacket on couch'): |
| | takeAndDrop('jacket', 'coat hanger') |
| | stop()" |
| | 215,"""If any plates are left on the dining table, bring them to the kitchen sink"" |
| | start() |
| | while True: |
| | if thereIs('plates on dining table'): |
| | takeAndDrop('plates', 'kitchen sink') |
| | stop()" |
| | 216,"""Whenever you see a hat on the shelf, place it on the hat hook"" |
| | start() |
| | while True: |
| | if thereIs('hat on shelf'): |
| | takeAndDrop('hat', 'hat hook') |
| | stop()" |
| | 217,"""If you spot any glasses on the bar counter, move them to the glass cabinet"" |
| | start() |
| | while True: |
| | if thereIs('glasses on bar counter'): |
| | takeAndDrop('glasses', 'glass cabinet') |
| | stop()" |
| | 218,"""When the music starts playing, put all the CDs in the CD rack"" |
| | start() |
| | while True: |
| | if thereIs('music starts playing'): |
| | takeAndDrop('CDs', 'CD rack') |
| | stop()" |
| | 219,"""If any towels are found in the laundry room, bring them to the towel cabinet"" |
| | start() |
| | while True: |
| | if thereIs('towels in laundry room'): |
| | takeAndDrop('towels', 'towel cabinet') |
| | stop()" |
| | 220,"""When you spot a bolt in the yellow bin, place it in the blue box."" |
| | start() |
| | while True: |
| | if thereIs('bolt in yellow bin'): |
| | takeAndDrop('bolt','blue box') |
| | stop()" |
| | 221,"""If you come across a nut in the green area, transfer it to the red crate."" |
| | start() |
| | while True: |
| | if thereIs('nut in green area'): |
| | takeAndDrop('nut','red crate') |
| | stop()" |
| | 222,"""When a screw is visible in the orange zone, pick it up and place it in the metal container."" |
| | start() |
| | while True: |
| | if thereIs('screw in orange zone'): |
| | takeAndDrop('screw','metal container') |
| | stop()" |
| | 223,"""If an assembly part is found in the designated section, take it and transfer it to the holding bin."" |
| | start() |
| | while True: |
| | if thereIs('assembly part in designated section'): |
| | takeAndDrop('assembly part','holding bin') |
| | stop()" |
| | 224,"""Spot any rivet in the work area, pick it up, and place it in the storage box."" |
| | start() |
| | while True: |
| | if thereIs('rivet in work area'): |
| | takeAndDrop('rivet','storage box') |
| | stop()" |
| | 225,"""When a fastener is detected in the inspection zone, transfer it to the designated container."" |
| | start() |
| | while True: |
| | if thereIs('fastener in inspection zone'): |
| | takeAndDrop('fastener','designated container') |
| | stop()" |
| | 226,"""If a valve is present in the vicinity of the conveyor belt, pick it up and place it in the labeled crate."" |
| | start() |
| | while True: |
| | if thereIs('valve near conveyor belt'): |
| | takeAndDrop('valve','labeled crate') |
| | stop()" |
| | 227,"""When you come across a bearing in the marked area, transfer it to the storage compartment."" |
| | start() |
| | while True: |
| | if thereIs('bearing in marked area'): |
| | takeAndDrop('bearing','storage compartment') |
| | stop()" |
| | 228,"""If a connector is visible in the yellow container, pick it up and place it in the compartment labeled 'Connectors'."" |
| | start() |
| | while True: |
| | if thereIs('connector in yellow container'): |
| | takeAndDrop('connector','compartment labeled Connectors') |
| | stop()" |
| | 229,"""Spot any gasket in the inspection area, take it, and transfer it to the appropriate storing bin."" |
| | start() |
| | while True: |
| | if thereIs('gasket in inspection area'): |
| | takeAndDrop('gasket','appropriate storing bin') |
| | stop()" |
| | 230,"""When you find a pencil, place it inside the red box."" |
| | start() |
| | while True: |
| | if thereIs('pencil'): |
| | takeAndDrop('pencil', 'red box') |
| | stop()" |
| | 231,"""If you see any books, put them in the blue shelf."" |
| | start() |
| | while True: |
| | if thereIs('book'): |
| | takeAndDrop('book', 'blue shelf') |
| | stop()" |
| | 232,"""When a pen is in the green area, transfer it to the white container."" |
| | start() |
| | while True: |
| | if thereIs('pen in green area'): |
| | takeAndDrop('pen', 'white container') |
| | stop()" |
| | 233,"""Place all the erasers you find into the yellow box."" |
| | start() |
| | while True: |
| | if thereIs('eraser'): |
| | takeAndDrop('eraser', 'yellow box') |
| | stop()" |
| | 234,"""Once you locate a ruler, put it inside the drawer."" |
| | start() |
| | while True: |
| | if thereIs('ruler'): |
| | takeAndDrop('ruler', 'drawer') |
| | stop()" |
| | 235,"""If there is a calculator on the table, place it in the black bag."" |
| | start() |
| | while True: |
| | if thereIs('calculator on table'): |
| | takeAndDrop('calculator', 'black bag') |
| | stop()" |
| | 236,"""Transfer all the textbooks to the shelf with the red label."" |
| | start() |
| | while True: |
| | if thereIs('textbook'): |
| | takeAndDrop('textbook', 'shelf with red label') |
| | stop()" |
| | 237,"""Fill the green container with all the colored pencils you find."" |
| | start() |
| | while True: |
| | if thereIs('colored pencil'): |
| | takeAndDrop('colored pencil', 'green container') |
| | stop()" |
| | 238,"""Put any markers you locate in the orange box."" |
| | start() |
| | while True: |
| | if thereIs('marker'): |
| | takeAndDrop('marker', 'orange box') |
| | stop()" |
| | 239,"""Once you find a scissors, place it inside the designated compartment."" |
| | start() |
| | while True: |
| | if thereIs('scissors'): |
| | takeAndDrop('scissors', 'designated compartment') |
| | stop()" |
| | 240,"""When there is a plate on the table, place it in the sink"" |
| | start() |
| | while True: |
| | if thereIs('plate on table'): |
| | takeAndDrop('plate', 'sink') |
| | stop()" |
| | 241,"""If you see a knife on the cutting board, move it to the knife holder"" |
| | start() |
| | while True: |
| | if thereIs('knife on cutting board'): |
| | takeAndDrop('knife', 'knife holder') |
| | stop()" |
| | 242,"""When there is a spoon in the drawer, transfer it to the utensil holder"" |
| | start() |
| | while True: |
| | if thereIs('spoon in drawer'): |
| | takeAndDrop('spoon', 'utensil holder') |
| | stop()" |
| | 243,"""If there is a bowl on the counter, move it to the cabinet"" |
| | start() |
| | while True: |
| | if thereIs('bowl on counter'): |
| | takeAndDrop('bowl', 'cabinet') |
| | stop()" |
| | 244,"""When you find a blender on the kitchen island, place it on the shelf"" |
| | start() |
| | while True: |
| | if thereIs('blender on kitchen island'): |
| | takeAndDrop('blender', 'shelf') |
| | stop()" |
| | 245,"""If there is a pot on the stove, transfer it to the cupboard"" |
| | start() |
| | while True: |
| | if thereIs('pot on stove'): |
| | takeAndDrop('pot', 'cupboard') |
| | stop()" |
| | 246,"""When you see a cutting board on the counter, move it to the designated shelf"" |
| | start() |
| | while True: |
| | if thereIs('cutting board on counter'): |
| | takeAndDrop('cutting board', 'designated shelf') |
| | stop()" |
| | 247,"""If there is a mug on the table, place it in the mug rack"" |
| | start() |
| | while True: |
| | if thereIs('mug on table'): |
| | takeAndDrop('mug', 'mug rack') |
| | stop()" |
| | 248,"""When there is a microwave on the counter, move it to the designated spot"" |
| | start() |
| | while True: |
| | if thereIs('microwave on counter'): |
| | takeAndDrop('microwave', 'designated spot') |
| | stop()" |
| | 249,"""If you find a plate in the dishwasher, transfer it to the plate rack"" |
| | start() |
| | while True: |
| | if thereIs('plate in dishwasher'): |
| | takeAndDrop('plate', 'plate rack') |
| | stop()" |
| | 250,"""When you spot any pencils in the blue region, bring them to me."" |
| | start() |
| | while True: |
| | if thereIs('pencil in blue region'): |
| | takeAndDrop('pencil', 'my hand') |
| | stop()" |
| | 251,"""If you find any balls in the green zone, pick them up and hand them to me."" |
| | start() |
| | while True: |
| | if thereIs('ball in green zone'): |
| | takeAndDrop('ball', 'my open hand') |
| | stop()" |
| | 252,"""When you see a teddy bear in the purple area, bring it to me gently."" |
| | start() |
| | while True: |
| | if thereIs('teddy bear in purple area'): |
| | takeAndDrop('teddy bear', 'my extended palm') |
| | stop()" |
| | 253,"""If there are any books on the shelf, take them and pass them over to me."" |
| | start() |
| | while True: |
| | if thereIs('book on shelf'): |
| | takeAndDrop('book', 'my outstretched hand') |
| | stop()" |
| | 254,"""Spot any apples in the yellow region and bring them to me carefully."" |
| | start() |
| | while True: |
| | if thereIs('apple in yellow region'): |
| | takeAndDrop('apple', 'my waiting grasp') |
| | stop()" |
| | 255,"""If you come across any shoes in the orange zone, collect them and hand them to me promptly."" |
| | start() |
| | while True: |
| | if thereIs('shoe in orange zone'): |
| | takeAndDrop('shoe', 'my ready hand') |
| | stop()" |
| | 256,"""When a hat is located in the pink area, pick it up and put it on my head."" |
| | start() |
| | while True: |
| | if thereIs('hat in pink area'): |
| | takeAndDrop('hat', 'my awaiting head') |
| | stop()" |
| | 257,"""If you spot any balloons in the turquoise zone, grab them and hand them to me cheerfully."" |
| | start() |
| | while True: |
| | if thereIs('balloon in turquoise zone'): |
| | takeAndDrop('balloon', 'my excited hands') |
| | stop()" |
| | 258,"""When you detect any flowers in the violet region, collect them and give them to me gently."" |
| | start() |
| | while True: |
| | if thereIs('flower in violet region'): |
| | takeAndDrop('flower', 'my waiting palms') |
| | stop()" |
| | 259,"""If there are any keys in the brown area, pick them up and pass them to me carefully."" |
| | start() |
| | while True: |
| | if thereIs('key in brown area'): |
| | takeAndDrop('key', 'my extended fingers') |
| | stop()" |
| | 260,"""When you locate any cookies in the magenta zone, collect them and give them to me joyfully."" |
| | start() |
| | while True: |
| | if thereIs('cookie in magenta zone'): |
| | takeAndDrop('cookie', 'my eager hands') |
| | stop()" |
| | 261,"""If you find any pens in the gray region, take them and offer them to me kindly."" |
| | start() |
| | while True: |
| | if thereIs('pen in gray region'): |
| | takeAndDrop('pen', 'my waiting fingers') |
| | stop()" |
| | 262,"""When a guitar is spotted in the indigo area, bring it to me gently and with care."" |
| | start() |
| | while True: |
| | if thereIs('guitar in indigo area'): |
| | takeAndDrop('guitar', 'my open arms') |
| | stop()" |
| | 263,"""If there are any hats in the olive zone, collect them and give them to me authentically."" |
| | start() |
| | while True: |
| | if thereIs('hat in olive zone'): |
| | takeAndDrop('hat', 'my waiting hat stand') |
| | stop()" |
| | 264,"""Spot any musical instruments in the gold region and bring them to me melodiously."" |
| | start() |
| | while True: |
| | if thereIs('musical instrument in gold region'): |
| | takeAndDrop('musical instrument', 'my eager arms') |
| | stop()" |
| | 265,"""If you come across any flowers in the fuchsia zone, pick them up and give them to me charmingly."" |
| | start() |
| | while True: |
| | if thereIs('flower in fuchsia zone'): |
| | takeAndDrop('flower', 'my awaiting palms') |
| | stop()" |
| | 266,"""When there are any mobile phones in the maroon area, grab them and hand them to me carefully."" |
| | start() |
| | while True: |
| | if thereIs('mobile phone in maroon area'): |
| | takeAndDrop('mobile phone', 'my extended fingers') |
| | stop()" |
| | 267,"""If you notice any balls in the beige zone, collect them and offer them to me with a smile."" |
| | start() |
| | while True: |
| | if thereIs('ball in beige zone'): |
| | takeAndDrop('ball', 'my waiting hands') |
| | stop()" |
| | 268,"""When you find any sunglasses in the silver area, bring them to me stylishly."" |
| | start() |
| | while True: |
| | if thereIs('sunglasses in silver area'): |
| | takeAndDrop('sunglasses', 'my trendy hands') |
| | stop()" |
| | 269,"""If any cakes are seen in the ivory zone, pick them up and pass them to me with delight."" |
| | start() |
| | while True: |
| | if thereIs('cake in ivory zone'): |
| | takeAndDrop('cake', 'my extended arms') |
| | stop()" |
| | 270,"""When you see a bolt in the blue area, give it to me."" |
| | start() |
| | while True: |
| | if thereIs('bolt in blue area'): |
| | takeAndDrop('bolt in blue area', 'open hand') |
| | stop()" |
| | 271,"""Take the nuts from the red zone and give them to the operator."" |
| | start() |
| | while True: |
| | if thereIs('nuts in red zone'): |
| | takeAndDrop('nuts in red zone', 'open hand') |
| | stop()" |
| | 272,"""Give me all the screws located in the green area."" |
| | start() |
| | while True: |
| | if thereIs('screws in green area'): |
| | takeAndDrop('screws in green area', 'open hand') |
| | stop()" |
| | 273,"""When you find a small gear in the yellow zone, hand it over to me."" |
| | start() |
| | while True: |
| | if thereIs('small gear in yellow zone'): |
| | takeAndDrop('small gear in yellow zone', 'open hand') |
| | stop()" |
| | 274,"""Retrieve the large spring from the designated area and deliver it to the operator."" |
| | start() |
| | while True: |
| | if thereIs('large spring in designated area'): |
| | takeAndDrop('large spring in designated area', 'open hand') |
| | stop()" |
| | 275,"""Hand me any washers you find in the marked zone."" |
| | start() |
| | while True: |
| | if thereIs('washers in marked zone'): |
| | takeAndDrop('washers in marked zone', 'open hand') |
| | stop()" |
| | 276,"""Retrieve the bearings from the specified area and give them to the user."" |
| | start() |
| | while True: |
| | if thereIs('bearings in specified area'): |
| | takeAndDrop('bearings in specified area', 'open hand') |
| | stop()" |
| | 277,"""Whenever you spot a metal plate in the designated zone, hand it over to the operator."" |
| | start() |
| | while True: |
| | if thereIs('metal plate in designated zone'): |
| | takeAndDrop('metal plate in designated zone', 'open hand') |
| | stop()" |
| | 278,"""Give me all the plastic clips located in the assigned area."" |
| | start() |
| | while True: |
| | if thereIs('plastic clips in assigned area'): |
| | takeAndDrop('platic clips in assigned area', 'open hand') |
| | stop()" |
| | 279,"""Hand me the rubber grommets from the green zone."" |
| | start() |
| | while True: |
| | if thereIs('rubber grommets in green zone'): |
| | takeAndDrop('rubber grommets in green zone', 'open hand') |
| | stop()" |
| | 280,"""When you find a textbook on the desk, give it to me"" |
| | start() |
| | while True: |
| | if thereIs('textbook on desk'): |
| | takeAndDrop('textbook on desk', 'open hand') |
| | stop()" |
| | 281,"""Whenever you see a pencil in the drawer, hand it to me"" |
| | start() |
| | while True: |
| | if thereIs('pencil in drawer'): |
| | takeAndDrop('pencil in drawer', 'open hand') |
| | stop()" |
| | 282,"""If there is a notebook on the table, bring it to me"" |
| | start() |
| | while True: |
| | if thereIs('notebook on table'): |
| | takeAndDrop('notebook on table', 'open hand') |
| | stop()" |
| | 283,"""When a calculator is on the shelf, pass it to me"" |
| | start() |
| | while True: |
| | if thereIs('calculator on shelf'): |
| | takeAndDrop('calculator on shelf', 'open hand') |
| | stop()" |
| | 284,"""If you find a marker on the whiteboard, give it to me"" |
| | start() |
| | while True: |
| | if thereIs('marker on whiteboard'): |
| | takeAndDrop('marker on whiteboard', 'open hand') |
| | stop()" |
| | 285,"""Whenever there is a ruler in the drawer, hand it to me"" |
| | start() |
| | while True: |
| | if thereIs('ruler in drawer'): |
| | takeAndDrop('ruler in drawer', 'open hand') |
| | stop()" |
| | 286,"""If you come across a textbook in the bookshelf, bring it to me"" |
| | start() |
| | while True: |
| | if thereIs('textbook in bookshelf'): |
| | takeAndDrop('textbook in bookshelf', 'open hand') |
| | stop()" |
| | 287,"""When there is a pen in the cup, pass it to me"" |
| | start() |
| | while True: |
| | if thereIs('pen in cup'): |
| | takeAndDrop('pen in cup', 'open hand') |
| | stop()" |
| | 288,"""If there is a textbook on the chair, give it to me"" |
| | start() |
| | while True: |
| | if thereIs('textbook on chair'): |
| | takeAndDrop('textbook on chair', 'open hand') |
| | stop()" |
| | 289,"""Whenever you find a pencil case on the table, hand it to me"" |
| | start() |
| | while True: |
| | if thereIs('pencil case on table'): |
| | takeAndDrop('pencil case on table', 'open hand') |
| | stop()" |
| | 290,"""When you spot a bowl in the kitchen, hand it to me"" |
| | start() |
| | while True: |
| | if thereIs('bowl in kitchen'): |
| | takeAndDrop('bowl', 'open hand') |
| | stop()" |
| | 291,"""If you find a spoon in the kitchen, deliver it to me"" |
| | start() |
| | while True: |
| | if thereIs('spoon in kitchen'): |
| | takeAndDrop('spoon', 'open hand') |
| | stop()" |
| | 292,"""Whenever there is a plate in the kitchen, pass it to me"" |
| | start() |
| | while True: |
| | if thereIs('plate in kitchen'): |
| | takeAndDrop('plate', 'open hand') |
| | stop()" |
| | 293,"""If you come across a knife in the kitchen, give it to me"" |
| | start() |
| | while True: |
| | if thereIs('knife in kitchen'): |
| | takeAndDrop('knife', 'open hand') |
| | stop()" |
| | 294,"""When a glass is present in the kitchen, hand it over to me"" |
| | start() |
| | while True: |
| | if thereIs('glass in kitchen'): |
| | takeAndDrop('glass', 'open hand') |
| | stop()" |
| | 295,"""If you see a jar in the kitchen, deliver it to me"" |
| | start() |
| | while True: |
| | if thereIs('jar in kitchen'): |
| | takeAndDrop('jar', 'open hand') |
| | stop()" |
| | 296,"""Whenever there is a cup in the kitchen, pass it to me"" |
| | start() |
| | while True: |
| | if thereIs('cup in kitchen'): |
| | takeAndDrop('cup', 'open hand') |
| | stop()" |
| | 297,"""When you spot a cutting board in the kitchen, hand it to me"" |
| | start() |
| | while True: |
| | if thereIs('cutting board in kitchen'): |
| | takeAndDrop('cutting board', 'open hand') |
| | stop()" |
| | 298,"""If you find a frying pan in the kitchen, deliver it to me"" |
| | start() |
| | while True: |
| | if thereIs('frying pan in kitchen'): |
| | takeAndDrop('frying pan', 'open hand') |
| | stop()" |
| | 299,"""Whenever there is a spatula in the kitchen, pass it to me"" |
| | start() |
| | while True: |
| | if thereIs('spatula in kitchen'): |
| | takeAndDrop('spatula', 'open hand') |
| | stop()" |
| | 300,"""Take the cups from the shelf and place them on the table. Pick up the books from the stack and put them on the bookshelf."" |
| | start() |
| | while True: |
| | if thereIs('cup','shelf'): |
| | takeAndDrop('cup','table') |
| | if thereIs('book','stack'): |
| | takeAndDrop('book','bookshelf') |
| | stop()" |
| | 301,"""Remove the plates from the sink and stack them in the cupboard. Simultaneously, collect the toys from the floor and place them in the toy bin."" |
| | start() |
| | while True: |
| | if thereIs('plate','sink'): |
| | takeAndDrop('plate','cupboard') |
| | if thereIs('toy','floor'): |
| | takeAndDrop('toy','toy bin') |
| | stop()" |
| | 302,"""Take the clothes from the hangers and hang them in the wardrobe. At the same time, gather the shoes from the floor and arrange them in the shoe rack."" |
| | start() |
| | while True: |
| | if thereIs('clothes','hangers'): |
| | takeAndDrop('clothes','wardrobe') |
| | if thereIs('shoe','floor'): |
| | takeAndDrop('shoe','shoe rack') |
| | stop()" |
| | 303,"""Transfer the dishes from the dishwasher and stack them in the cabinet. Simultaneously, collect the groceries from the bags and place them on the kitchen counter."" |
| | start() |
| | while True: |
| | if thereIs('dish','dishwasher'): |
| | takeAndDrop('dish','cabinet') |
| | if thereIs('grocery','bag'): |
| | takeAndDrop('grocery','kitchen counter') |
| | stop()" |
| | 304,"""Take the tools from the toolbox and arrange them on the workbench. Simultaneously, pick up the papers from the stack and organize them in the filing cabinet."" |
| | start() |
| | while True: |
| | if thereIs('tool','toolbox'): |
| | takeAndDrop('tool','workbench') |
| | if thereIs('paper','stack'): |
| | takeAndDrop('paper','filing cabinet') |
| | stop()" |
| | 305,"""Remove the shoes from the shoe rack and place them in the shoe cabinet. Simultaneously, collect the hats from the hooks and hang them on the hat stand."" |
| | start() |
| | while True: |
| | if thereIs('shoe','shoe rack'): |
| | takeAndDrop('shoe','shoe cabinet') |
| | if thereIs('hat','hooks'): |
| | takeAndDrop('hat','hat stand') |
| | stop()" |
| | 306,"""Fetch the paintbrushes from the drawer and place them on the artist's palette. Simultaneously, collect the canvases from the stack and store them in the art storage."" |
| | start() |
| | while True: |
| | if thereIs('paintbrush','drawer'): |
| | takeAndDrop('paintbrush','artist palette') |
| | if thereIs('canvas','stack'): |
| | takeAndDrop('canvas','art storage') |
| | stop() |
| | 307,"""Take the dishes from the kitchen counter and arrange them in the dish rack. Simultaneously, gather the utensils from the drawer and put them in the utensil divider." |
| | start() |
| | while True: |
| | if thereIs('dish','kitchen counter'): |
| | takeAndDrop('dish','dish rack') |
| | if thereIs('utensil','drawer'): |
| | takeAndDrop('utensil','utensil divider') |
| | stop() |
| | 308,"""Transfer the books from the bookshelf and arrange them on the reading table. Simultaneously, collect the notebooks from the stack and organize them in the bookcase." |
| | start() |
| | while True: |
| | if thereIs('book','bookshelf'): |
| | takeAndDrop('book','reading table') |
| | if thereIs('notebook','stack'): |
| | takeAndDrop('notebook','bookcase') |
| | stop() |
| | 309,"""Take the cups from the cabinet and place them on the serving tray. Simultaneously, collect the plates from the dishwasher and stack them in the plate rack." |
| | start() |
| | while True: |
| | if thereIs('cup','cabinet'): |
| | takeAndDrop('cup','serving tray') |
| | if thereIs('plate','dishwasher'): |
| | takeAndDrop('plate','plate rack') |
| | stop() |
| | 310,"""Take the wrench and place it in the toolbox. Fill the container with bolts." |
| | start() |
| | while True: |
| | if thereIs('wrench'): |
| | takeAndDrop('wrench', 'toolbox') |
| | if thereIs('bolt'): |
| | takeAndDrop('bolt', 'container') |
| | stop() |
| | 311,"""Grab the screwdriver and put it in the toolbox. Load the shelves with nuts." |
| | start() |
| | while True: |
| | if thereIs('screwdriver'): |
| | takeAndDrop('screwdriver', 'toolbox') |
| | if thereIs('nut'): |
| | takeAndDrop('nut', 'shelves') |
| | stop() |
| | 312,"""Place the drill in the designated rack. Organize the workbench with screws." |
| | start() |
| | while True: |
| | if thereIs('drill'): |
| | takeAndDrop('drill', 'rack') |
| | if thereIs('screw'): |
| | takeAndDrop('screw', 'workbench') |
| | stop() |
| | 313,"""Put the hammer in the toolbox. Arrange the container with nails." |
| | start() |
| | while True: |
| | if thereIs('hammer'): |
| | takeAndDrop('hammer', 'toolbox') |
| | if thereIs('nail'): |
| | takeAndDrop('nail', 'container') |
| | stop() |
| | 314,"""Take the pliers and place them in the designated drawer. Fill up the shelves with washers." |
| | start() |
| | while True: |
| | if thereIs('pliers'): |
| | takeAndDrop('pliers', 'drawer') |
| | if thereIs('washer'): |
| | takeAndDrop('washer', 'shelves') |
| | stop() |
| | 315,"""Grab the tape measure and put it in the toolbox. Load the container with screws." |
| | start() |
| | while True: |
| | if thereIs('tape measure'): |
| | takeAndDrop('tape measure', 'toolbox') |
| | if thereIs('screw'): |
| | takeAndDrop('screw', 'container') |
| | stop() |
| | 316,"""Place the saw in the designated rack. Organize the workbench with bolts." |
| | start() |
| | while True: |
| | if thereIs('saw'): |
| | takeAndDrop('saw', 'rack') |
| | if thereIs('bolt'): |
| | takeAndDrop('bolt', 'workbench') |
| | stop() |
| | 317,"""Put the level in the toolbox. Arrange the container with washers." |
| | start() |
| | while True: |
| | if thereIs('level'): |
| | takeAndDrop('level', 'toolbox') |
| | if thereIs('washer'): |
| | takeAndDrop('washer', 'container') |
| | stop() |
| | 318,"""Take the screw gun and place it in the designated drawer. Fill up the shelves with nails." |
| | start() |
| | while True: |
| | if thereIs('screw gun'): |
| | takeAndDrop('screw gun', 'drawer') |
| | if thereIs('nail'): |
| | takeAndDrop('nail', 'shelves') |
| | stop() |
| | 319,"""Grab the utility knife and put it in the toolbox. Load the container with screws." |
| | start() |
| | while True: |
| | if thereIs('utility knife'): |
| | takeAndDrop('utility knife', 'toolbox') |
| | if thereIs('screw'): |
| | takeAndDrop('screw', 'container') |
| | stop() |
| | 320,"""Collect all the books from the bookshelf and place them on the table" |
| | start() |
| | while True: |
| | if thereIs('book'): |
| | takeAndDrop('book','table') |
| | stop() |
| | 321,"""Pick up all the pencils from the drawer and store them in the pencil case" |
| | start() |
| | while True: |
| | if thereIs('pencil'): |
| | takeAndDrop('pencil','pencil case') |
| | stop() |
| | 322,"""Gather all the notebooks from the table and stack them neatly in the backpack" |
| | start() |
| | while True: |
| | if thereIs('notebook'): |
| | takeAndDrop('notebook','backpack') |
| | stop() |
| | 323,"""Retrieve all the art supplies from the shelf and place them in the art box" |
| | start() |
| | while True: |
| | if thereIs('art supply'): |
| | takeAndDrop('art supply','art box') |
| | stop() |
| | 324,"""Collect all the science lab equipment from the table and store them in the lab cabinet" |
| | start() |
| | while True: |
| | if thereIs('science lab equipment'): |
| | takeAndDrop('science lab equipment','lab cabinet') |
| | stop() |
| | 325,"""Pick up all the calculators from the desk and place them in the math box" |
| | start() |
| | while True: |
| | if thereIs('calculator'): |
| | takeAndDrop('calculator','math box') |
| | stop() |
| | 326,"""Gather all the musical instruments from the music room and store them in the instrument cabinet" |
| | start() |
| | while True: |
| | if thereIs('musical instrument'): |
| | takeAndDrop('musical instrument','instrument cabinet') |
| | stop() |
| | 327,"""Retrieve all the textbooks from the library and place them on the book trolley" |
| | start() |
| | while True: |
| | if thereIs('textbook'): |
| | takeAndDrop('textbook','book trolley') |
| | stop() |
| | 328,"""Collect all the art projects from the art class and store them in the project display area" |
| | start() |
| | while True: |
| | if thereIs('art project'): |
| | takeAndDrop('art project','project display area') |
| | stop() |
| | 329,"""Pick up all the sports equipment from the gymnasium and place them in the storage closet" |
| | start() |
| | while True: |
| | if thereIs('sports equipment'): |
| | takeAndDrop('sports equipment','storage closet') |
| | stop() |
| | 330,"""Take the plates from the dishwasher and place them in the cabinet. Fill the bowl with fresh fruits." |
| | start() |
| | while True: |
| | if thereIs('plate'): |
| | takeAndDrop('plate','cabinet') |
| | if thereIs('bowl'): |
| | takeAndDrop('bowl','fresh fruits') |
| | stop() |
| | 331,"""Transfer the cups from the counter to the shelf. Put the utensils in the drawer." |
| | start() |
| | while True: |
| | if thereIs('cup'): |
| | takeAndDrop('cup','shelf') |
| | if thereIs('utensil'): |
| | takeAndDrop('utensil','drawer') |
| | stop() |
| | 332,"""Collect all the pots and pans and store them in the cabinet. Fill the jug with water." |
| | start() |
| | while True: |
| | if thereIs('pot'): |
| | takeAndDrop('pot','cabinet') |
| | if thereIs('pan'): |
| | takeAndDrop('pan','cabinet') |
| | if thereIs('jug'): |
| | takeAndDrop('jug','water') |
| | stop() |
| | 333,"""Put all the knives in the drawer. Transfer the glasses to the cupboard." |
| | start() |
| | while True: |
| | if thereIs('knife'): |
| | takeAndDrop('knife','drawer') |
| | if thereIs('glass'): |
| | takeAndDrop('glass','cupboard') |
| | stop() |
| | 334,"""Take the cutting board and place it on the counter. Fill the jar with sugar." |
| | start() |
| | while True: |
| | if thereIs('cutting board'): |
| | takeAndDrop('cutting board','counter') |
| | if thereIs('jar'): |
| | takeAndDrop('jar','sugar') |
| | stop() |
| | 335,"""Transfer the baking tray to the oven. Put all the mugs in the cupboard." |
| | start() |
| | while True: |
| | if thereIs('baking tray'): |
| | takeAndDrop('baking tray','oven') |
| | if thereIs('mug'): |
| | takeAndDrop('mug','cupboard') |
| | stop() |
| | 336,"""Place the blender on the kitchen counter. Fill the pitcher with juice." |
| | start() |
| | while True: |
| | if thereIs('blender'): |
| | takeAndDrop('blender','kitchen counter') |
| | if thereIs('pitcher'): |
| | takeAndDrop('pitcher','juice') |
| | stop() |
| | 337,"""Take all the baking dishes and store them in the cabinet. Fill the teapot with boiling water." |
| | start() |
| | while True: |
| | if thereIs('baking dish'): |
| | takeAndDrop('baking dish','cabinet') |
| | if thereIs('teapot'): |
| | takeAndDrop('teapot','boiling water') |
| | stop() |
| | 338,"""Transfer the saucepans to the stove. Put all the saucers in the drawer." |
| | start() |
| | while True: |
| | if thereIs('saucepan'): |
| | takeAndDrop('saucepan','stove') |
| | if thereIs('saucer'): |
| | takeAndDrop('saucer','drawer') |
| | stop() |
| | 339,"""Place the toaster on the kitchen island. Fill the thermos with hot coffee." |
| | start() |
| | while True: |
| | if thereIs('toaster'): |
| | takeAndDrop('toaster','kitchen island') |
| | if thereIs('thermos'): |
| | takeAndDrop('thermos','hot coffee') |
| | stop() |
| | 340,"""Put all the apples into the basket and hand me all the pencils" |
| | start() |
| | while True: |
| | if thereIs('apple'): |
| | takeAndDrop('apple', 'basket') |
| | if thereIs('pencil'): |
| | takeAndDrop('pencil', 'open hand') |
| | stop() |
| | 341,"""Fill the red cup with coffee while giving me all the books" |
| | start() |
| | while True: |
| | if thereIs('book'): |
| | takeAndDrop('book', 'open hand') |
| | if thereIs('coffee'): |
| | takeAndDrop('coffee', 'red cup') |
| | stop() |
| | 342,"""Put the toys in the bag and hand me all the red blocks" |
| | start() |
| | while True: |
| | if thereIs('toy'): |
| | takeAndDrop('toy', 'bag') |
| | if thereIs('red block'): |
| | takeAndDrop('red block', 'open hand') |
| | stop() |
| | 343,"""While giving me all the books, put the cups on the shelf" |
| | start() |
| | while True: |
| | if thereIs('book'): |
| | takeAndDrop('book', 'open hand') |
| | if thereIs('cup'): |
| | takeAndDrop('cup', 'shelf') |
| | stop() |
| | 344,"""Give me all the balls and fill the blue bag with oranges" |
| | start() |
| | while True: |
| | if thereIs('ball'): |
| | takeAndDrop('ball', 'open hand') |
| | if thereIs('orange'): |
| | takeAndDrop('orange', 'blue bag') |
| | stop() |
| | 345,"""While handing me the papers, arrange the cups neatly on the table" |
| | start() |
| | while True: |
| | if thereIs('paper'): |
| | takeAndDrop('paper', 'open hand') |
| | if thereIs('cup'): |
| | takeAndDrop('cup', 'table') |
| | stop() |
| | 346,"""Hand me the yellow cubes and stack the boxes on the shelf" |
| | start() |
| | while True: |
| | if thereIs('yellow cube'): |
| | takeAndDrop('yellow cube', 'open hand') |
| | if thereIs('box'): |
| | takeAndDrop('box', 'shelf') |
| | stop() |
| | 347,"""While giving me the markers, put the bottles in the fridge" |
| | start() |
| | while True: |
| | if thereIs('marker'): |
| | takeAndDrop('marker', 'open hand') |
| | if thereIs('bottle'): |
| | takeAndDrop('bottle', 'fridge') |
| | stop() |
| | 348,"""Hand me the green blocks and arrange the books on the shelf" |
| | start() |
| | while True: |
| | if thereIs('green block'): |
| | takeAndDrop('green block', 'open hand') |
| | if thereIs('book'): |
| | takeAndDrop('book', 'shelf') |
| | stop() |
| | 349,"""Put the snacks in the bag while handing me all the pencils" |
| | start() |
| | while True: |
| | if thereIs('snack'): |
| | takeAndDrop('snack', 'bag') |
| | if thereIs('pencil'): |
| | takeAndDrop('pencil', 'open hand') |
| | stop() |
| | 350,"""While handing me the markers, stack the cups on the shelf" |
| | start() |
| | while True: |
| | if thereIs('marker'): |
| | takeAndDrop('marker', 'open hand') |
| | if thereIs('cup'): |
| | takeAndDrop('cup', 'shelf') |
| | stop() |
| | 351,"""Hand me all the color pencils and put the toys in the box" |
| | start() |
| | while True: |
| | if thereIs('color pencil'): |
| | takeAndDrop('color pencil', 'open hand') |
| | if thereIs('toy'): |
| | takeAndDrop('toy', 'box') |
| | stop() |
| | 352,"""While giving me the papers, place the dishes in the sink" |
| | start() |
| | while True: |
| | if thereIs('paper'): |
| | takeAndDrop('paper', 'open hand') |
| | if thereIs('dish'): |
| | takeAndDrop('dish', 'sink') |
| | stop() |
| | 353,"""Hand me the blue pens and stack the boxes on the table" |
| | start() |
| | while True: |
| | if thereIs('blue pen'): |
| | takeAndDrop('blue pen', 'open hand') |
| | if thereIs('box'): |
| | takeAndDrop('box', 'table') |
| | stop() |
| | 354,"""Put the snacks in the bag and hand me all the red balls" |
| | start() |
| | while True: |
| | if thereIs('snack'): |
| | takeAndDrop('snack', 'bag') |
| | if thereIs('red ball'): |
| | takeAndDrop('red ball', 'open hand') |
| | stop() |
| | 355,"""While handing me the markers, arrange the books on the desk" |
| | start() |
| | while True: |
| | if thereIs('marker'): |
| | takeAndDrop('marker', 'open hand') |
| | if thereIs('book'): |
| | takeAndDrop('book', 'desk') |
| | stop() |
| | 356,"""Hand me the yellow blocks and stack the boxes in the corner" |
| | start() |
| | while True: |
| | if thereIs('yellow block'): |
| | takeAndDrop('yellow block', 'open hand') |
| | if thereIs('box'): |
| | takeAndDrop('box', 'corner') |
| | stop() |
| | 357,"""While handing me the papers, put the plates in the cupboard" |
| | start() |
| | while True: |
| | if thereIs('paper'): |
| | takeAndDrop('paper', 'open hand') |
| | if thereIs('plate'): |
| | takeAndDrop('plate', 'cupboard') |
| | stop() |
| | 358,"""Hand me the green markers and arrange the bottles on the table" |
| | start() |
| | while True: |
| | if thereIs('green marker'): |
| | takeAndDrop('green marker', 'open hand') |
| | if thereIs('bottle'): |
| | takeAndDrop('bottle', 'table') |
| | stop() |
| | 359,"""Transfer all bolts to the open tray and give me all the screws" |
| | start() |
| | while True: |
| | if thereIs('bolt'): |
| | takeAndDrop('bolt','open tray') |
| | if thereIs('screw'): |
| | takeAndDrop('screw','open hand') |
| | stop() |
| | 360,"""Put all the wires in the container and hand me all the cables" |
| | start() |
| | while True: |
| | if thereIs('wire'): |
| | takeAndDrop('wire','container') |
| | if thereIs('cable'): |
| | takeAndDrop('cable','open hand') |
| | stop() |
| | 361,"""Fill the blue bin with all the nuts and give me all the bolts" |
| | start() |
| | while True: |
| | if thereIs('nut'): |
| | takeAndDrop('nut', 'blue bin') |
| | if thereIs('bolt'): |
| | takeAndDrop('bolt', 'open hand') |
| | stop() |
| | 362,"""Transfer all the small gears to the yellow box and hand me all the large gears" |
| | start() |
| | while True: |
| | if thereIs('small gear'): |
| | takeAndDrop('small gear', 'yellow box') |
| | if thereIs('large gear'): |
| | takeAndDrop('large gear', 'open hand') |
| | stop() |
| | 363,"""Put all the springs in the designated compartment and give me all the screws" |
| | start() |
| | while True: |
| | if thereIs('spring'): |
| | takeAndDrop('spring', 'designated compartment') |
| | if thereIs('screw'): |
| | takeAndDrop('screw', 'open hand') |
| | stop() |
| | 364,"""Load all the batteries into the container and hand me all the resistors" |
| | start() |
| | while True: |
| | if thereIs('battery'): |
| | takeAndDrop('battery', 'container') |
| | if thereIs('resistor'): |
| | takeAndDrop('resistor', 'open hand') |
| | stop() |
| | 365,"""Fill the metal bin with all the washers and give me all the screws" |
| | start() |
| | while True: |
| | if thereIs('washer'): |
| | takeAndDrop('washer', 'metal bin') |
| | if thereIs('screw'): |
| | takeAndDrop('screw', 'open hand') |
| | stop() |
| | 366,"""Transfer all the electronic components to the designated tray and hand me all the connectors" |
| | start() |
| | while True: |
| | if thereIs('electronic component'): |
| | takeAndDrop('electronic component', 'designated tray') |
| | if thereIs('connector'): |
| | takeAndDrop('connector', 'open hand') |
| | stop() |
| | 367,"""Put all the capacitors in the container and give me all the diodes" |
| | start() |
| | while True: |
| | if thereIs('capacitor'): |
| | takeAndDrop('capacitor', 'container') |
| | if thereIs('diode'): |
| | takeAndDrop('diode', 'open hand') |
| | stop() |
| | 368,"""Fill the red box with all the transistors and hand me all the ICs" |
| | start() |
| | while True: |
| | if thereIs('transistor'): |
| | takeAndDrop('transistor', 'red box') |
| | if thereIs('IC'): |
| | takeAndDrop('IC', 'open hand') |
| | stop() |
| | 369,"""Put all the books on the shelf and give me all the pencils." |
| | start() |
| | while True: |
| | if thereIs('book') |
| | takeAndDrop('book','shelf') |
| | if thereIs('pencil'): |
| | takeAndDrop('pencil','open hand') |
| | stop() |
| | 370,"""When you see a calculator, place it on the teacher's desk and hand me all the erasers." |
| | start() |
| | while True: |
| | if thereIs('calculator') |
| | takeAndDrop('calculator','teacher's desk') |
| | if thereIs('eraser'): |
| | takeAndDrop('eraser','open hand') |
| | stop()" |
| | 371,"""Organize all the textbooks in the locker and give me all the markers."" |
| | start() |
| | while True: |
| | if thereIs('textbook') |
| | takeAndDrop('textbook','locker') |
| | if thereIs('marker'): |
| | takeAndDrop('marker','open hand') |
| | stop()" |
| | 372,"""Place all the rulers in the drawer and hand me all the highlighters."" |
| | start() |
| | while True: |
| | if thereIs('ruler') |
| | takeAndDrop('ruler','drawer') |
| | if thereIs('highlighter'): |
| | takeAndDrop('highlighter','open hand') |
| | stop()" |
| | 373,"""Put all the notebooks in the bag and give me all the colored pencils."" |
| | start() |
| | while True: |
| | if thereIs('notebook') |
| | takeAndDrop('notebook','bag') |
| | if thereIs('colored pencil'): |
| | takeAndDrop('colored pencil','open hand') |
| | stop()" |
| | 374,"""Arrange all the glue sticks in the cabinet and hand me all the scissors."" |
| | start() |
| | while True: |
| | if thereIs('glue stick') |
| | takeAndDrop('glue stick','cabinet') |
| | if thereIs('scissors'): |
| | takeAndDrop('scissors','open hand') |
| | stop()" |
| | 375,"""Store all the compasses in the drawer and give me all the markers."" |
| | start() |
| | while True: |
| | if thereIs('compass') |
| | takeAndDrop('compass','drawer') |
| | if thereIs('marker'): |
| | takeAndDrop('marker','open hand') |
| | stop()" |
| | 376,"""Stack all the calculators on the shelf and hand me all the erasers."" |
| | start() |
| | while True: |
| | if thereIs('calculator') |
| | takeAndDrop('calculator','shelf') |
| | if thereIs('eraser'): |
| | takeAndDrop('eraser','open hand') |
| | stop()" |
| | 377,"""Place all the protractors in the drawer and give me all the markers."" |
| | start() |
| | while True: |
| | if thereIs('protractor') |
| | takeAndDrop('protractor','drawer') |
| | if thereIs('marker'): |
| | takeAndDrop('marker','open hand') |
| | stop()" |
| | 378,"""Put all the textbooks on the table and give me all the pencils."" |
| | start() |
| | while True: |
| | if thereIs('textbook') |
| | takeAndDrop('textbook','table') |
| | if thereIs('pencil'): |
| | takeAndDrop('pencil','open hand') |
| | stop()" |
| | 379,"""Fill the sink with water and place all the dishes in the dishwasher"" |
| | start() |
| | while True: |
| | if thereIs('water'): |
| | takeAndDrop('water','sink') |
| | if thereIs('dish'): |
| | takeAndDrop('dish','dishwasher') |
| | stop()" |
| | 380,"""Put the coffee mug on the table and place all the spoons in the drawer"" |
| | start() |
| | while True: |
| | if thereIs('coffee mug'): |
| | takeAndDrop('coffee mug','table') |
| | if thereIs('spoon'): |
| | takeAndDrop('spoon','drawer') |
| | stop()" |
| | 381,"""Fill the pot with water and place all the vegetables in the refrigerator"" |
| | start() |
| | while True: |
| | if thereIs('water'): |
| | takeAndDrop('water','pot') |
| | if thereIs('vegetable'): |
| | takeAndDrop('vegetable','refrigerator') |
| | stop()" |
| | 382,"""Place the cutting board on the counter and put all the knives in the knife block"" |
| | start() |
| | while True: |
| | if thereIs('cutting board'): |
| | takeAndDrop('cutting board','counter') |
| | if thereIs('knife'): |
| | takeAndDrop('knife','knife block') |
| | stop()" |
| | 383,"""Fill the blender with fruits and place all the cups in the cupboard"" |
| | start() |
| | while True: |
| | if thereIs('fruit'): |
| | takeAndDrop('fruit','blender') |
| | if thereIs('cup'): |
| | takeAndDrop('cup','cupboard') |
| | stop()" |
| | 384,"""Put the baking tray in the oven and place all the pots in the cabinet"" |
| | start() |
| | while True: |
| | if thereIs('baking tray'): |
| | takeAndDrop('baking tray','oven') |
| | if thereIs('pot'): |
| | takeAndDrop('pot','cabinet') |
| | stop()" |
| | 385,"""Fill the kettle with water and place all the tea bags in the box"" |
| | start() |
| | while True: |
| | if thereIs('water'): |
| | takeAndDrop('water','kettle') |
| | if thereIs('tea bag'): |
| | takeAndDrop('tea bag','box') |
| | stop()" |
| | 386,"""Put the frying pan on the stove and place all the utensils in the drawer"" |
| | start() |
| | while True: |
| | if thereIs('frying pan'): |
| | takeAndDrop('frying pan','stove') |
| | if thereIs('utensil'): |
| | takeAndDrop('utensil','drawer') |
| | stop()" |
| | 387,"""Fill the pitcher with juice and place all the glasses in the cupboard"" |
| | start() |
| | while True: |
| | if thereIs('juice'): |
| | takeAndDrop('juice','pitcher') |
| | if thereIs('glass'): |
| | takeAndDrop('glass','cupboard') |
| | stop()" |
| | 388,"""Put the can opener on the counter and place all the cans in the pantry"" |
| | start() |
| | while True: |
| | if thereIs('can opener'): |
| | takeAndDrop('can opener','counter') |
| | if thereIs('can'): |
| | takeAndDrop('can','pantry') |
| | stop()" |
| | 389,"""Take all the red cubes and put them inside the wooden box."" |
| | start() |
| | while True: |
| | if thereIs('red cube'): |
| | takeAndDrop('red cube','wooden box') |
| | stop()" |
| | 390,"""Fill the glass jar with either green spheres or blue cubes."" |
| | start() |
| | while True: |
| | if thereIs('green sphere'): |
| | takeAndDrop('green sphere','glass jar') |
| | if thereIs('blue cube'): |
| | takeAndDrop('blue cube','glass jar') |
| | stop()" |
| | 391,"""Place the cylindrical object or the triangular prism inside the metal bucket."" |
| | start() |
| | while True: |
| | if thereIs('cylindrical object'): |
| | takeAndDrop('cylindrical object','metal bucket') |
| | if thereIs('triangular prism'): |
| | takeAndDrop('triangular prism','metal bucket') |
| | stop()" |
| | 392,"""Put the blue sphere or the yellow cube in the transparent container."" |
| | start() |
| | while True: |
| | if thereIs('blue sphere'): |
| | takeAndDrop('blue sphere','transparent container') |
| | if thereIs('yellow cube'): |
| | takeAndDrop('yellow cube','transparent container') |
| | stop()" |
| | 393,"""Fill the cardboard box with either rectangular objects or small spheres."" |
| | start() |
| | while True: |
| | if thereIs('rectangular object'): |
| | takeAndDrop('rectangular object','cardboard box') |
| | if thereIs('small sphere'): |
| | takeAndDrop('small sphere','cardboard box') |
| | stop()" |
| | 394,"""Take all the triangular objects or the spherical ones and place them in the purple bin."" |
| | start() |
| | while True: |
| | if thereIs('triangular object'): |
| | takeAndDrop('triangular object','purple bin') |
| | if thereIs('spherical object'): |
| | takeAndDrop('spherical object','purple bin') |
| | stop()" |
| | 395,"""Put either the green cone or the yellow cylinder inside the wooden crate."" |
| | start() |
| | while True: |
| | if thereIs('green cone'): |
| | takeAndDrop('green cone','wooden crate') |
| | if thereIs('yellow cylinder'): |
| | takeAndDrop('yellow cylinder','wooden crate') |
| | stop()" |
| | 396,"""Fill the transparent box with any of the orange cubes, green spheres, or blue cylinders."" |
| | start() |
| | while True: |
| | if thereIs('orange cube'): |
| | takeAndDrop('orange cube','transparent box') |
| | if thereIs('green sphere'): |
| | takeAndDrop('green sphere','transparent box') |
| | if thereIs('blue cylinder'): |
| | takeAndDrop('blue cylinder','transparent box') |
| | stop()" |
| | 397,"""Put either the large cube, the small pyramid, or the round object in the metal container."" |
| | start() |
| | while True: |
| | if thereIs('large cube'): |
| | takeAndDrop('large cube','metal container') |
| | if thereIs('small pyramid'): |
| | takeAndDrop('small pyramid','metal container') |
| | if thereIs('round object'): |
| | takeAndDrop('round object','metal container') |
| | stop()" |
| | 398,"""Place the yellow sphere, the blue cone, or the red prism inside the glass vase."" |
| | start() |
| | while True: |
| | if thereIs('yellow sphere'): |
| | takeAndDrop('yellow sphere','glass vase') |
| | if thereIs('blue cone'): |
| | takeAndDrop('blue cone','glass vase') |
| | if thereIs('red prism'): |
| | takeAndDrop('red prism','glass vase') |
| | stop()" |
| | 399,"""Fill the plastic box with either the green cube, the red sphere, or the yellow pyramid."" |
| | start() |
| | while True: |
| | if thereIs('green cube'): |
| | takeAndDrop('green cube','plastic box') |
| | if thereIs('red sphere'): |
| | takeAndDrop('red sphere','plastic box') |
| | if thereIs('yellow pyramid'): |
| | takeAndDrop('yellow pyramid','plastic box') |
| | stop()" |
| | 400,"""Put either the blue cube or the yellow cylinder inside the cardboard tube."" |
| | start() |
| | while True: |
| | if thereIs('blue cube'): |
| | takeAndDrop('blue cube','cardboard tube') |
| | if thereIs('yellow cylinder'): |
| | takeAndDrop('yellow cylinder','cardboard tube') |
| | stop()" |
| | 401,"""Take all the orange cylinders or the pink spheres and place them in the transparent bag."" |
| | start() |
| | while True: |
| | if thereIs('orange cylinder'): |
| | takeAndDrop('orange cylinder','transparent bag') |
| | if thereIs('pink sphere'): |
| | takeAndDrop('pink sphere','transparent bag') |
| | stop()" |
| | 402,"""Fill the wooden crate with any of the triangular objects, blue cubes, or cylindrical shapes."" |
| | start() |
| | while True: |
| | if thereIs('triangular object'): |
| | takeAndDrop('triangular object','wooden crate') |
| | if thereIs('blue cube'): |
| | takeAndDrop('blue cube','wooden crate') |
| | if thereIs('cylindrical shape'): |
| | takeAndDrop('cylindrical shape','wooden crate') |
| | stop()" |
| | 403,"""Put either the yellow pyramid or the red object inside the glass jar."" |
| | start() |
| | while True: |
| | if thereIs('yellow pyramid'): |
| | takeAndDrop('yellow pyramid','glass jar') |
| | if thereIs('red object'): |
| | takeAndDrop('red object','glass jar') |
| | stop()" |
| | 404,"""Fill the metal bucket with either the yellow sphere, the blue cube, or the green triangular prism."" |
| | start() |
| | while True: |
| | if thereIs('yellow sphere'): |
| | takeAndDrop('yellow sphere','metal bucket') |
| | if thereIs('blue cube'): |
| | takeAndDrop('blue cube','metal bucket') |
| | if thereIs('green triangular prism'): |
| | takeAndDrop('green triangular prism','metal bucket') |
| | stop()" |
| | 405,"""Take all the round objects or the rectangular shapes and place them in the transparent container."" |
| | start() |
| | while True: |
| | if thereIs('round object'): |
| | takeAndDrop('round object','transparent container') |
| | if thereIs('rectangular shape'): |
| | takeAndDrop('rectangular shape','transparent container') |
| | stop()" |
| | 406,"""Put the pink cube or the green cone inside the wooden box."" |
| | start() |
| | while True: |
| | if thereIs('pink cube'): |
| | takeAndDrop('pink cube','wooden box') |
| | if thereIs('green cone'): |
| | takeAndDrop('green cone','wooden box') |
| | stop()" |
| | 407,"""Fill the blue bin with screws, bolts, or nuts"" |
| | start() |
| | while True: |
| | if thereIs('screw') |
| | takeAndDrop('screw','blue bin') |
| | if thereIs('bolt') |
| | takeAndDrop('bolt','blue bin') |
| | if thereIs('nut') |
| | takeAndDrop('nut','blue bin') |
| | stop()" |
| | 408,"""Put either small or large cables into the yellow crate"" |
| | start() |
| | while True: |
| | if thereIs('small cable') |
| | takeAndDrop('small cable','yellow crate') |
| | if thereIs('large cable') |
| | takeAndDrop('large cable','yellow crate') |
| | stop()" |
| | 409,"""Fill the green bin with either plastic bottles or aluminum cans"" |
| | start() |
| | while True: |
| | if thereIs('plastic bottle') |
| | takeAndDrop('plastic bottle','green bin') |
| | if thereIs('aluminum can') |
| | takeAndDrop('aluminum can','green bin') |
| | stop()" |
| | 410,"""Place any type of tools into the red toolbox"" |
| | start() |
| | while True: |
| | if thereIs('tool') |
| | takeAndDrop('tool','red toolbox') |
| | stop()" |
| | 411,"""Fill the white bin with either plastic bags or cardboard boxes"" |
| | start() |
| | while True: |
| | if thereIs('plastic bag') |
| | takeAndDrop('plastic bag','white bin') |
| | if thereIs('cardboard box') |
| | takeAndDrop('cardboard box','white bin') |
| | stop()" |
| | 412,"""Put either small screws or nails into the silver container"" |
| | start() |
| | while True: |
| | if thereIs('small screw') |
| | takeAndDrop('small screw','silver container') |
| | if thereIs('nail') |
| | takeAndDrop('nail','silver container') |
| | stop()" |
| | 413,"""Fill the bin with either red, blue, or green markers"" |
| | start() |
| | while True: |
| | if thereIs('red marker') |
| | takeAndDrop('red marker','bin') |
| | if thereIs('blue marker') |
| | takeAndDrop('blue marker','bin') |
| | if thereIs('green marker') |
| | takeAndDrop('green marker','bin') |
| | stop()" |
| | 414,"""Put either small or large boxes into the black container"" |
| | start() |
| | while True: |
| | if thereIs('small box') |
| | takeAndDrop('small box','black container') |
| | if thereIs('large box') |
| | takeAndDrop('large box','black container') |
| | stop()" |
| | 415,"""Fill the yellow bin with either glass bottles or plastic containers"" |
| | start() |
| | while True: |
| | if thereIs('glass bottle') |
| | takeAndDrop('glass bottle','yellow bin') |
| | if thereIs('plastic container') |
| | takeAndDrop('plastic container','yellow bin') |
| | stop()" |
| | 416,"""Place any type of electronic devices into the blue container"" |
| | start() |
| | while True: |
| | if thereIs('electronic device') |
| | takeAndDrop('electronic device','blue container') |
| | stop()" |
| | 417,"""Put the books or pencils in the backpack."" |
| | start() |
| | while True: |
| | if thereIs('book'): |
| | takeAndDrop('book','backpack') |
| | if thereIs('pencil'): |
| | takeAndDrop('pencil','backpack') |
| | stop()" |
| | 418,"""Fill the pencil case with pens or markers."" |
| | start() |
| | while True: |
| | if thereIs('pen'): |
| | takeAndDrop('pen','pencil case') |
| | if thereIs('marker'): |
| | takeAndDrop('marker','pencil case') |
| | stop()" |
| | 419,"""Transfer the erasers or sharpeners to the desk."" |
| | start() |
| | while True: |
| | if thereIs('eraser'): |
| | takeAndDrop('eraser','desk') |
| | if thereIs('sharpener'): |
| | takeAndDrop('sharpener','desk') |
| | stop()" |
| | 420,"""Move the rulers or compasses to the drawer."" |
| | start() |
| | while True: |
| | if thereIs('ruler'): |
| | takeAndDrop('ruler','drawer') |
| | if thereIs('compass'): |
| | takeAndDrop('compass','drawer') |
| | stop()" |
| | 421,"""Place the notebooks or calculators in the backpack."" |
| | start() |
| | while True: |
| | if thereIs('notebook'): |
| | takeAndDrop('notebook','backpack') |
| | if thereIs('calculator'): |
| | takeAndDrop('calculator','backpack') |
| | stop()" |
| | 422,"""Fill the art supplies box with paintbrushes or crayons."" |
| | start() |
| | while True: |
| | if thereIs('paintbrush'): |
| | takeAndDrop('paintbrush','art supplies box') |
| | if thereIs('crayon'): |
| | takeAndDrop('crayon','art supplies box') |
| | stop()" |
| | 423,"""Transfer the scissors or glue sticks to the desk."" |
| | start() |
| | while True: |
| | if thereIs('scissors'): |
| | takeAndDrop('scissors','desk') |
| | if thereIs('glue stick'): |
| | takeAndDrop('glue stick','desk') |
| | stop()" |
| | 424,"""Move the colored pencils or markers to the drawer."" |
| | start() |
| | while True: |
| | if thereIs('colored pencil'): |
| | takeAndDrop('colored pencil','drawer') |
| | if thereIs('marker'): |
| | takeAndDrop('marker','drawer') |
| | stop()" |
| | 425,"""Place the textbooks or notebooks in the backpack."" |
| | start() |
| | while True: |
| | if thereIs('textbook'): |
| | takeAndDrop('textbook','backpack') |
| | if thereIs('notebook'): |
| | takeAndDrop('notebook','backpack') |
| | stop()" |
| | 426,"""Fill the geometry set box with compasses or protractors."" |
| | start() |
| | while True: |
| | if thereIs('compass'): |
| | takeAndDrop('compass','geometry set box') |
| | if thereIs('protractor'): |
| | takeAndDrop('protractor','geometry set box') |
| | stop()" |
| | 427,"""Put the vegetables in the salad bowl"" |
| | start() |
| | while True: |
| | if thereIs('vegetable'): |
| | takeAndDrop('vegetable', 'salad bowl') |
| | stop()" |
| | 428,"""Place the fruits in the fruit basket"" |
| | start() |
| | while True: |
| | if thereIs('fruit'): |
| | takeAndDrop('fruit', 'fruit basket') |
| | stop()" |
| | 429,"""Fill the mixing bowl with flour or sugar"" |
| | start() |
| | while True: |
| | if thereIs('flour'): |
| | takeAndDrop('flour', 'mixing bowl') |
| | if thereIs('sugar'): |
| | takeAndDrop('sugar', 'mixing bowl') |
| | stop()" |
| | 430,"""Add the spices to the spice jar"" |
| | start() |
| | while True: |
| | if thereIs('spice'): |
| | takeAndDrop('spice', 'spice jar') |
| | stop()" |
| | 431,"""Put the utensils in the utensil drawer"" |
| | start() |
| | while True: |
| | if thereIs('utensil'): |
| | takeAndDrop('utensil', 'utensil drawer') |
| | stop()" |
| | 432,"""Place the condiments in the condiment rack"" |
| | start() |
| | while True: |
| | if thereIs('condiment'): |
| | takeAndDrop('condiment', 'condiment rack') |
| | stop()" |
| | 433,"""Add the ingredients to the recipe bowl"" |
| | start() |
| | while True: |
| | if thereIs('ingredient'): |
| | takeAndDrop('ingredient', 'recipe bowl') |
| | stop()" |
| | 434,"""Fill the jars with preserves or pickles"" |
| | start() |
| | while True: |
| | if thereIs('preserve'): |
| | takeAndDrop('preserve', 'jar') |
| | if thereIs('pickle'): |
| | takeAndDrop('pickle', 'jar') |
| | stop()" |
| | 435,"""Put the groceries in the shopping bag"" |
| | start() |
| | while True: |
| | if thereIs('grocery'): |
| | takeAndDrop('grocery', 'shopping bag') |
| | stop()" |
| | 436,"""Place the dishes in the dish rack"" |
| | start() |
| | while True: |
| | if thereIs('dish'): |
| | takeAndDrop('dish', 'dish rack') |
| | stop()" |
| | 437,"""Fill the red bag with three pencils and two erasers."" |
| | start() |
| | while True: |
| | if thereIs('pencil'): |
| | takeAndDrop('pencil','red bag') |
| | if thereIs('eraser'): |
| | takeAndDrop('eraser','red bag') |
| | takeAndDrop('eraser','red bag') |
| | stop()" |
| | 438,"""Place four apples in each basket."" |
| | start() |
| | while True: |
| | if thereIs('apple'): |
| | for i in range(4): |
| | takeAndDrop('apple','basket') |
| | stop()" |
| | 439,"""Fill the green box with two red balls and one blue ball."" |
| | start() |
| | while True: |
| | if thereIs('red ball'): |
| | takeAndDrop('red ball','green box') |
| | takeAndDrop('red ball','green box') |
| | if thereIs('blue ball'): |
| | takeAndDrop('blue ball','green box') |
| | stop()" |
| | 440,"""Put five books in every shelf."" |
| | start() |
| | while True: |
| | if thereIs('book'): |
| | for i in range(5): |
| | takeAndDrop('book','shelf') |
| | stop()" |
| | 441,"""Fill the yellow bucket with six toy cars."" |
| | start() |
| | while True: |
| | if thereIs('toy car'): |
| | for i in range(6): |
| | takeAndDrop('toy car','yellow bucket') |
| | stop()" |
| | 442,"""Place two oranges and three bananas in each bowl."" |
| | start() |
| | while True: |
| | if thereIs('orange'): |
| | takeAndDrop('orange','bowl') |
| | takeAndDrop('orange','bowl') |
| | if thereIs('banana'): |
| | takeAndDrop('banana','bowl') |
| | takeAndDrop('banana','bowl') |
| | takeAndDrop('banana','bowl') |
| | stop()" |
| | 443,"""Fill each drawer with one purple sock and one yellow sock."" |
| | start() |
| | while True: |
| | if thereIs('purple sock'): |
| | takeAndDrop('purple sock','drawer') |
| | takeAndDrop('yellow sock','drawer') |
| | if thereIs('yellow sock'): |
| | takeAndDrop('yellow sock','drawer') |
| | takeAndDrop('purple sock','drawer') |
| | stop()" |
| | 444,"""Put three mugs and four plates in each cupboard."" |
| | start() |
| | while True: |
| | if thereIs('mug'): |
| | takeAndDrop('mug','cupboard') |
| | takeAndDrop('mug','cupboard') |
| | takeAndDrop('mug','cupboard') |
| | if thereIs('plate'): |
| | takeAndDrop('plate','cupboard') |
| | takeAndDrop('plate','cupboard') |
| | takeAndDrop('plate','cupboard') |
| | takeAndDrop('plate','cupboard') |
| | stop()" |
| | 445,"""Fill the white box with five colored pencils and two markers."" |
| | start() |
| | while True: |
| | if thereIs('colored pencil'): |
| | takeAndDrop('colored pencil','white box') |
| | takeAndDrop('colored pencil','white box') |
| | takeAndDrop('colored pencil','white box') |
| | takeAndDrop('colored pencil','white box') |
| | takeAndDrop('colored pencil','white box') |
| | if thereIs('marker'): |
| | takeAndDrop('marker','white box') |
| | takeAndDrop('marker','white box') |
| | stop()" |
| | 446,"""Place four cookies and one brownie in each jar."" |
| | start() |
| | while True: |
| | if thereIs('cookie'): |
| | takeAndDrop('cookie','jar') |
| | takeAndDrop('cookie','jar') |
| | takeAndDrop('cookie','jar') |
| | takeAndDrop('cookie','jar') |
| | if thereIs('brownie'): |
| | takeAndDrop('brownie','jar') |
| | stop()" |
| | 447,"""Fill each pocket with two red marbles and three blue marbles."" |
| | start() |
| | while True: |
| | if thereIs('red marble'): |
| | takeAndDrop('red marble','pocket') |
| | takeAndDrop('red marble','pocket') |
| | takeAndDrop('blue marble','pocket') |
| | takeAndDrop('blue marble','pocket') |
| | takeAndDrop('blue marble','pocket') |
| | stop()" |
| | 448,"""Put five batteries in each compartment."" |
| | start() |
| | while True: |
| | if thereIs('battery'): |
| | for i in range(5): |
| | takeAndDrop('battery','compartment') |
| | stop()" |
| | 449,"""Fill the brown bag with six toy animals."" |
| | start() |
| | while True: |
| | if thereIs('toy animal'): |
| | for i in range(6): |
| | takeAndDrop('toy animal','brown bag') |
| | stop()" |
| | 450,"""Place two tennis balls and one baseball in each box."" |
| | start() |
| | while True: |
| | if thereIs('tennis ball'): |
| | takeAndDrop('tennis ball','box') |
| | takeAndDrop('tennis ball','box') |
| | if thereIs('baseball'): |
| | takeAndDrop('baseball','box') |
| | stop()" |
| | 451,"""Fill the pink basket with four socks and three gloves."" |
| | start() |
| | while True: |
| | if thereIs('sock'): |
| | takeAndDrop('sock','pink basket') |
| | takeAndDrop('sock','pink basket') |
| | takeAndDrop('sock','pink basket') |
| | takeAndDrop('sock','pink basket') |
| | if thereIs('glove'): |
| | takeAndDrop('glove','pink basket') |
| | takeAndDrop('glove','pink basket') |
| | takeAndDrop('glove','pink basket') |
| | stop()" |
| | 452,"""Put three balls and four juggling clubs in each bag."" |
| | start() |
| | while True: |
| | if thereIs('ball'): |
| | takeAndDrop('ball','bag') |
| | takeAndDrop('ball','bag') |
| | takeAndDrop('ball','bag') |
| | if thereIs('juggling club'): |
| | takeAndDrop('juggling club','bag') |
| | takeAndDrop('juggling club','bag') |
| | takeAndDrop('juggling club','bag') |
| | takeAndDrop('juggling club','bag') |
| | stop()" |
| | 453,"""Fill each crate with one metal bolt."" |
| | start() |
| | while True: |
| | if thereIs('metal bolt'): |
| | takeAndDrop('metal bolt','empty crate') |
| | stop()" |
| | 454,"""Place one plastic component in each box."" |
| | start() |
| | while True: |
| | if thereIs('plastic component'): |
| | takeAndDrop('plastic component','empty box') |
| | stop()" |
| | 455,"""Ensure that each pallet contains one cardboard box."" |
| | start() |
| | while True: |
| | if thereIs('cardboard box'): |
| | takeAndDrop('cardboard box','empty pallet') |
| | stop()" |
| | 456,"""Fill each bin with one electronic component."" |
| | start() |
| | while True: |
| | if thereIs('electronic component'): |
| | takeAndDrop('electronic component','empty bin') |
| | stop()" |
| | 457,"""Place one rubber tire in each storage container."" |
| | start() |
| | while True: |
| | if thereIs('rubber tire'): |
| | takeAndDrop('rubber tire','empty storage container') |
| | stop()" |
| | 458,"""Ensure that each basket contains one glass bottle."" |
| | start() |
| | while True: |
| | if thereIs('glass bottle'): |
| | takeAndDrop('glass bottle','empty basket') |
| | stop()" |
| | 459,"""Fill each crate with one wooden block."" |
| | start() |
| | while True: |
| | if thereIs('wooden block'): |
| | takeAndDrop('wooden block','empty crate') |
| | stop()" |
| | 460,"""Place one steel rod in each box."" |
| | start() |
| | while True: |
| | if thereIs('steel rod'): |
| | takeAndDrop('steel rod','empty box') |
| | stop()" |
| | 461,"""Ensure that each pallet contains one plastic container."" |
| | start() |
| | while True: |
| | if thereIs('plastic container'): |
| | takeAndDrop('plastic container','empty pallet') |
| | stop()" |
| | 462,"""Fill each bin with one metal nut."" |
| | start() |
| | while True: |
| | if thereIs('metal nut'): |
| | takeAndDrop('metal nut','empty bin') |
| | stop()" |
| | 463,"""Take 4 books and place them on the desk"" |
| | start() |
| | while True: |
| | if thereIs('book'): |
| | takeAndDrop('book', 'desk') |
| | takeAndDrop('book', 'desk') |
| | takeAndDrop('book', 'desk') |
| | takeAndDrop('book', 'desk') |
| | stop()" |
| | 464,"""Put 5 pencils into the pencil case"" |
| | start() |
| | while True: |
| | if thereIs('pencil'): |
| | takeAndDrop('pencil', 'pencil case') |
| | takeAndDrop('pencil', 'pencil case') |
| | takeAndDrop('pencil', 'pencil case') |
| | takeAndDrop('pencil', 'pencil case') |
| | takeAndDrop('pencil', 'pencil case') |
| | stop()" |
| | 465,"""Fill the drawer with 3 erasers"" |
| | start() |
| | while True: |
| | if thereIs('eraser'): |
| | takeAndDrop('eraser', 'drawer') |
| | takeAndDrop('eraser', 'drawer') |
| | takeAndDrop('eraser', 'drawer') |
| | stop()" |
| | 466,"""Place 6 crayons in the box"" |
| | start() |
| | while True: |
| | if thereIs('crayon'): |
| | takeAndDrop('crayon', 'box') |
| | takeAndDrop('crayon', 'box') |
| | takeAndDrop('crayon', 'box') |
| | takeAndDrop('crayon', 'box') |
| | takeAndDrop('crayon', 'box') |
| | takeAndDrop('crayon', 'box') |
| | stop()" |
| | 467,"""Fill the bag with 8 markers"" |
| | start() |
| | while True: |
| | if thereIs('marker'): |
| | takeAndDrop('marker', 'bag') |
| | takeAndDrop('marker', 'bag') |
| | takeAndDrop('marker', 'bag') |
| | takeAndDrop('marker', 'bag') |
| | takeAndDrop('marker', 'bag') |
| | takeAndDrop('marker', 'bag') |
| | takeAndDrop('marker', 'bag') |
| | takeAndDrop('marker', 'bag') |
| | stop()" |
| | 468,"""Place 10 scissors in the drawer"" |
| | start() |
| | while True: |
| | if thereIs('scissors'): |
| | takeAndDrop('scissors', 'drawer') |
| | takeAndDrop('scissors', 'drawer') |
| | takeAndDrop('scissors', 'drawer') |
| | takeAndDrop('scissors', 'drawer') |
| | takeAndDrop('scissors', 'drawer') |
| | takeAndDrop('scissors', 'drawer') |
| | takeAndDrop('scissors', 'drawer') |
| | takeAndDrop('scissors', 'drawer') |
| | takeAndDrop('scissors', 'drawer') |
| | takeAndDrop('scissors', 'drawer') |
| | stop()" |
| | 469,"""Take 2 globes and put them on the shelf"" |
| | start() |
| | while True: |
| | if thereIs('globe'): |
| | takeAndDrop('globe', 'shelf') |
| | takeAndDrop('globe', 'shelf') |
| | stop()" |
| | 470,"""Fill the backpack with 4 calculators"" |
| | start() |
| | while True: |
| | if thereIs('calculator'): |
| | takeAndDrop('calculator', 'backpack') |
| | takeAndDrop('calculator', 'backpack') |
| | takeAndDrop('calculator', 'backpack') |
| | takeAndDrop('calculator', 'backpack') |
| | stop()" |
| | 471,"""Put 3 rulers into the pencil case"" |
| | start() |
| | while True: |
| | if thereIs('ruler'): |
| | takeAndDrop('ruler', 'pencil case') |
| | takeAndDrop('ruler', 'pencil case') |
| | takeAndDrop('ruler', 'pencil case') |
| | stop()" |
| | 472,"""Take 5 compasses and place them in the drawer"" |
| | start() |
| | while True: |
| | if thereIs('compass'): |
| | takeAndDrop('compass', 'drawer') |
| | takeAndDrop('compass', 'drawer') |
| | takeAndDrop('compass', 'drawer') |
| | takeAndDrop('compass', 'drawer') |
| | takeAndDrop('compass', 'drawer') |
| | stop()" |
| | 473,"""Fill the fridge with five apples"" |
| | start() |
| | while True: |
| | if thereIs('apple'): |
| | takeAndDrop('apple', 'fridge') |
| | for i in range(4): |
| | takeAndDrop('apple', 'fridge') |
| | stop()" |
| | 474,"""Put two plates in the dishwasher"" |
| | start() |
| | while True: |
| | if thereIs('plate'): |
| | takeAndDrop('plate', 'dishwasher') |
| | takeAndDrop('plate', 'dishwasher') |
| | stop()" |
| | 475,"""Place three glasses on the shelf"" |
| | start() |
| | while True: |
| | if thereIs('glass'): |
| | takeAndDrop('glass', 'shelf') |
| | takeAndDrop('glass', 'shelf') |
| | takeAndDrop('glass', 'shelf') |
| | stop()" |
| | 476,"""Fill the drawer with four spoons"" |
| | start() |
| | while True: |
| | if thereIs('spoon'): |
| | takeAndDrop('spoon', 'drawer') |
| | takeAndDrop('spoon', 'drawer') |
| | takeAndDrop('spoon', 'drawer') |
| | takeAndDrop('spoon', 'drawer') |
| | stop()" |
| | 477,"""Put five bowls on the table"" |
| | start() |
| | while True: |
| | if thereIs('bowl'): |
| | takeAndDrop('bowl', 'table') |
| | takeAndDrop('bowl', 'table') |
| | takeAndDrop('bowl', 'table') |
| | takeAndDrop('bowl', 'table') |
| | takeAndDrop('bowl', 'table') |
| | stop()" |
| | 478,"""Fill the cupboard with three plates"" |
| | start() |
| | while True: |
| | if thereIs('plate'): |
| | takeAndDrop('plate', 'cupboard') |
| | takeAndDrop('plate', 'cupboard') |
| | takeAndDrop('plate', 'cupboard') |
| | stop()" |
| | 479,"""Place two knives in the knife rack"" |
| | start() |
| | while True: |
| | if thereIs('knife'): |
| | takeAndDrop('knife', 'knife rack') |
| | takeAndDrop('knife', 'knife rack') |
| | stop()" |
| | 480,"""Fill the pantry with four cans"" |
| | start() |
| | while True: |
| | if thereIs('can'): |
| | takeAndDrop('can', 'pantry') |
| | takeAndDrop('can', 'pantry') |
| | takeAndDrop('can', 'pantry') |
| | takeAndDrop('can', 'pantry') |
| | stop()" |
| | 481,"""Put three mugs on the coffee table"" |
| | start() |
| | while True: |
| | if thereIs('mug'): |
| | takeAndDrop('mug', 'coffee table') |
| | takeAndDrop('mug', 'coffee table') |
| | takeAndDrop('mug', 'coffee table') |
| | stop()" |
| | 482,"""Fill the sink with two dirty plates"" |
| | start() |
| | while True: |
| | if thereIs('dirty plate'): |
| | takeAndDrop('dirty plate', 'sink') |
| | takeAndDrop('dirty plate', 'sink') |
| | stop()" |
| | 483,"""Whenever the blue light turns on, move all the boxes to the shelf."" |
| | start() |
| | while True: |
| | if thereIs('blue light on') and thereIs('box'): |
| | takeAndDrop('box','shelf') |
| | stop()" |
| | 484,"""If the alarm goes off, pick up all the books and stack them on the table."" |
| | start() |
| | while True: |
| | if thereIs('alarm on') and thereIs('book'): |
| | takeAndDrop('book','table') |
| | stop()" |
| | 485,"""When the screen displays 'ready', bring all the tools and place them in the toolbox."" |
| | start() |
| | while True: |
| | if thereIs('screen ready') and thereIs('tool'): |
| | takeAndDrop('tool','toolbox') |
| | stop()" |
| | 486,"""If the red indicator lights up, grab all the cables and organize them on the rack."" |
| | start() |
| | while True: |
| | if thereIs('red indicator on') and thereIs('cable'): |
| | takeAndDrop('cable','rack') |
| | stop()" |
| | 487,"""Whenever the sensor detects motion, transfer all the boxes to the other side of the room."" |
| | start() |
| | while True: |
| | if thereIs('motion detected') and thereIs('box'): |
| | takeAndDrop('box','other side') |
| | stop()" |
| | 488,"""When the door is closed, store all the items in the closet."" |
| | start() |
| | while True: |
| | if thereIs('door closed'): |
| | takeAndDrop('item','closet') |
| | stop()" |
| | 489,"""If the temperature exceeds 30 degrees, place all the drinks in the refrigerator."" |
| | start() |
| | while True: |
| | if thereIs('temperature > 30') and thereIs('drink'): |
| | takeAndDrop('drink','refrigerator') |
| | stop()" |
| | 490,"""When the timer reaches zero, gather all the dishes and stack them in the sink."" |
| | start() |
| | while True: |
| | if thereIs('timer zero') and thereIs('dish'): |
| | takeAndDrop('dish','sink') |
| | stop()" |
| | 491,"""If the power is turned off, remove all the equipment from the table and place them in the cabinet."" |
| | start() |
| | while True: |
| | if thereIs('power off') and thereIs('equipment'): |
| | takeAndDrop('equipment','cabinet') |
| | stop()" |
| | 492,"""Whenever the alarm sounds, take all the files and organize them in the drawer."" |
| | start() |
| | while True: |
| | if thereIs('alarm on') and thereIs('file'): |
| | takeAndDrop('file','drawer') |
| | stop()" |
| | 493,"""When the green light illuminates, collect all the clothes and hang them in the wardrobe."" |
| | start() |
| | while True: |
| | if thereIs('green light on') and thereIs('clothes'): |
| | takeAndDrop('clothes','wardrobe') |
| | stop()" |
| | 494,"""If the music stops playing, pick up all the instruments and place them in the case."" |
| | start() |
| | while True: |
| | if thereIs('music stopped') and thereIs('instrument'): |
| | takeAndDrop('instrument','case') |
| | stop()" |
| | 495,"""Whenever the screen displays 'error', store all the spare parts in the toolbox."" |
| | start() |
| | while True: |
| | if thereIs('screen error') and thereIs('spare part'): |
| | takeAndDrop('spare part','toolbox') |
| | stop()" |
| | 496,"""When the printer jams, gather all the papers and stack them in the tray."" |
| | start() |
| | while True: |
| | if thereIs('printer jam') and thereIs('paper'): |
| | takeAndDrop('paper','tray') |
| | stop()" |
| | 497,"""If the battery level drops below 20%, bring all the devices and charge them in the docking station."" |
| | start() |
| | while True: |
| | if thereIs('battery < 20%') and thereIs('device'): |
| | takeAndDrop('device','docking station') |
| | stop()" |
| | 498,"""When the alarm panel goes off, move all the boxes to the storage room."" |
| | start() |
| | while True: |
| | if thereIs('alarm panel on') and thereIs('box'): |
| | takeAndDrop('box','storage room') |
| | stop()" |
| | 499,"""If the weight exceeds the limit, remove all the items from the table and place them in the drawer."" |
| | start() |
| | while True: |
| | if thereIs('weight > limit') and thereIs('item'): |
| | takeAndDrop('item','drawer') |
| | stop()" |
| | 500,"""Whenever the red light blinks, take all the tools and arrange them on the workbench."" |
| | start() |
| | while True: |
| | if thereIs('red light blinking') and thereIs('tool'): |
| | takeAndDrop('tool','workbench') |
| | stop()" |
| | 501,"""When the security alarm is triggered, gather all the valuables and place them in the safe."" |
| | start() |
| | while True: |
| | if thereIs('security alarm on') and thereIs('valuable'): |
| | takeAndDrop('valuable','safe') |
| | stop()" |
| | 502,"""If the humidity level rises, collect all the electronics and store them in a dry place."" |
| | start() |
| | while True: |
| | if thereIs('humidity level high') and thereIs('electronics'): |
| | takeAndDrop('electronics','dry place') |
| | stop()" |
| | 503,"""When the alarm is triggered, move all the parts from the conveyor belt to the storage container"" |
| | start() |
| | while True: |
| | if thereIs('alarm triggered'): |
| | takeAndDrop('parts','storage container') |
| | stop()" |
| | 504,"""When the button is pressed, package all the products and place them on the pallet"" |
| | start() |
| | while True: |
| | if thereIs('button pressed'): |
| | takeAndDrop('products','pallet') |
| | stop()" |
| | 505,"""When the sensor detects a defect, remove the faulty items from the assembly line"" |
| | start() |
| | while True: |
| | if thereIs('defect detected'): |
| | takeAndDrop('faulty items','discard bin') |
| | stop()" |
| | 506,"""When the quality check fails, sort all the rejected components into the rejection bin"" |
| | start() |
| | while True: |
| | if thereIs('quality check fails'): |
| | takeAndDrop('rejected components','rejection bin') |
| | stop()" |
| | 507,"""When the machine overheats, move all the materials away from the production area"" |
| | start() |
| | while True: |
| | if thereIs('machine overheats'): |
| | takeAndDrop('materials','safe zone') |
| | stop()" |
| | 508,"""When the emergency stop is activated, secure all the tools and equipment in their designated storage"" |
| | start() |
| | while True: |
| | if thereIs('emergency stop activated'): |
| | takeAndDrop('tools and equipment','designated storage') |
| | stop()" |
| | 509,"""When the safety gate is opened, ensure all the hazardous substances are stored properly"" |
| | start() |
| | while True: |
| | if thereIs('safety gate opened'): |
| | takeAndDrop('hazardous substances','secure storage') |
| | stop()" |
| | 510,"""When the power outage occurs, disconnect all the electrical devices and safeguard them"" |
| | start() |
| | while True: |
| | if thereIs('power outage occurs'): |
| | takeAndDrop('electrical devices','protected area') |
| | stop()" |
| | 511,"""When the alarm system is activated, relocate all the finished products to the designated storage location"" |
| | start() |
| | while True: |
| | if thereIs('alarm system activated'): |
| | takeAndDrop('finished products','specific storage location') |
| | stop()" |
| | 512,"""When the temperature exceeds the limit, transfer all the heat-sensitive items to the climate-controlled area"" |
| | start() |
| | while True: |
| | if thereIs('temperature exceeds limit'): |
| | takeAndDrop('heat-sensitive items','climate-controlled area') |
| | stop()" |
| | 513,"""When the bell rings, put all the books in the bookshelf"" |
| | start() |
| | while True: |
| | if thereIs('bell ring') and thereIs('book'): |
| | takeAndDrop('book','bookshelf') |
| | stop()" |
| | 514,"""When the teacher raises their hand, put all the pencils in the drawer"" |
| | start() |
| | while True: |
| | if thereIs('teacher raise hand') and thereIs('pencil'): |
| | takeAndDrop('pencil','drawer') |
| | stop()" |
| | 515,"""When the lunch bell rings, put all the food trays in the kitchen"" |
| | start() |
| | while True: |
| | if thereIs('lunch bell ring') and thereIs('food tray'): |
| | takeAndDrop('food tray','kitchen') |
| | stop()" |
| | 516,"""When the fire alarm goes off, put all the students' bags in the hallway"" |
| | start() |
| | while True: |
| | if thereIs('fire alarm goes off') and thereIs('bag'): |
| | takeAndDrop('bag','hallway') |
| | stop() |
| | 517,"""When the recess bell rings, put all the sports equipment in the storage room" |
| | start() |
| | while True: |
| | if thereIs('recess bell ring') and thereIs('sports equipment'): |
| | takeAndDrop('sports equipment','storage room') |
| | stop() |
| | 518,"""When the music starts playing, put all the instruments in the music room" |
| | start() |
| | while True: |
| | if thereIs('music starts playing') and thereIs('instrument'): |
| | takeAndDrop('instrument','music room') |
| | stop() |
| | 519,"""When the science teacher enters the classroom, put all the lab materials on the lab table" |
| | start() |
| | while True: |
| | if thereIs('science teacher enters classroom') and thereIs('lab material'): |
| | takeAndDrop('lab material','lab table') |
| | stop() |
| | 520,"""When the art class starts, put all the art supplies on the art table" |
| | start() |
| | while True: |
| | if thereIs('art class starts') and thereIs('art supply'): |
| | takeAndDrop('art supply','art table') |
| | stop() |
| | 521,"""When the recess ends, put all the outdoor play equipment in the playground shed" |
| | start() |
| | while True: |
| | if thereIs('recess ends') and thereIs('outdoor play equipment'): |
| | takeAndDrop('outdoor play equipment','playground shed') |
| | stop() |
| | 522,"""When the oven is preheated, put the baking tray with cookies into the oven." |
| | start() |
| | while True: |
| | if thereIs('oven preheated') and thereIs('baking tray with cookies'): |
| | takeAndDrop('baking tray with cookies','oven') |
| | stop() |
| | 523,"""When the toaster is ready, take the toasted bread slices and place them on a plate." |
| | start() |
| | while True: |
| | if thereIs('toaster ready') and thereIs('toasted bread slices'): |
| | takeAndDrop('toasted bread slices','plate') |
| | stop() |
| | 524,"""When the water in the kettle reaches boiling point, pour it into a cup with a tea bag." |
| | start() |
| | while True: |
| | if thereIs('kettle boiling') and thereIs('cup with tea bag'): |
| | takeAndDrop('cup with tea bag','kettle') |
| | stop() |
| | 525,"""When the blender is turned on, blend the fruits and pour the smoothie into a glass." |
| | start() |
| | while True: |
| | if thereIs('blender on') and thereIs('fruits'): |
| | takeAndDrop('fruits','blender') |
| | takeAndDrop('smoothie','glass') |
| | stop() |
| | 526,"""When the coffee machine is ready, place a cup under the coffee dispenser and press the start button." |
| | start() |
| | while True: |
| | if thereIs('coffee machine ready') and thereIs('cup'): |
| | takeAndDrop('cup','coffee machine') |
| | takeAndDrop('start button','coffee machine') |
| | stop() |
| | 527,"""When the microwave finishes heating, take the food container and place it on the dining table." |
| | start() |
| | while True: |
| | if thereIs('microwave finished heating') and thereIs('food container'): |
| | takeAndDrop('food container','dining table') |
| | stop() |
| | 528,"""When the dishwasher cycle is completed, unload the clean dishes and place them in the kitchen cabinets." |
| | start() |
| | while True: |
| | if thereIs('dishwasher cycle completed') and thereIs('clean dishes'): |
| | takeAndDrop('clean dishes','kitchen cabinets') |
| | stop() |
| | 529,"""When the toast pops up, take it out and spread butter on it." |
| | start() |
| | while True: |
| | if thereIs('toast pops up'): |
| | takeAndDrop('toast','plate') |
| | takeAndDrop('butter','toast') |
| | stop() |
| | 530,"""When the fridge door is opened, check the contents and add missing items to the grocery list." |
| | start() |
| | while True: |
| | if thereIs('fridge door opened') and thereIs('missing items'): |
| | takeAndDrop('missing items','grocery list') |
| | stop() |
| | 531,"""When the rice cooker completes cooking, scoop the cooked rice into a bowl and serve it on the dining table." |
| | start() |
| | while True: |
| | if thereIs('rice cooker completes cooking') and thereIs('cooked rice'): |
| | takeAndDrop('cooked rice','bowl') |
| | takeAndDrop('bowl','dining table') |
| | stop() |
| |
|