From StrategyWiki, the video game walkthrough and strategy guide wiki
Jump to navigation Jump to search

Instructions[edit]

Tripler Room

For each thing in the INBOX, TRIPLE it. And OUTBOX the result.

Self improvement tip: Where are we going with this? Please leave the high level decisions to management.

Strategy[edit]

This is the first level along a "left path." Years on the left paths are considered "optional" and are intended to be more challenging. This first one isn't particularly tough, but in order to succeed at the optimization challenges, you must remember one important fact: even when you COPYTO a box on the floor, you still wind up holding the same value in your hands.

Therefore, you can start by grabbing a number from the IN belt, and copying the value to a box. Since you are still holding the value, you just need to add it to itself two more times to triple the value. So you can instruct the worker to add the number you just copied to a box two times, and drop the result on the OUT belt.

a:
   INBOX   
   COPYTO   0
   ADD      0
   ADD      0
   OUTBOX  
   JUMP     a

Performance[edit]

Steps     Size      Speed
Goal        6         24
Reached     6         24

Optimization (Speed)[edit]

Speed 20 but 🔴Size 20🔴

   INBOX   
   COPYTO   0
   ADD      0
   ADD      0
   OUTBOX  
   INBOX   
   COPYTO   0
   ADD      0
   ADD      0
   OUTBOX  
   INBOX   
   COPYTO   0
   ADD      0
   ADD      0
   OUTBOX  
   INBOX   
   COPYTO   0
   ADD      0
   ADD      0
   OUTBOX