Motivation

I started playing a new game called Uncle Chop’s Rocket Shop (UCRS). The main premise is to repair customer rockets that may have various issues—like changing the oil. Each rocket module can present different types of problems, some of which require deeper troubleshooting, analysis, and repair.

I created two scripts to assist with the timed modes of the game. While the casual gameplay lets you take your time, I found myself consistently failing in timed challenges due to how complex some of the puzzles are.

Scripts

1) UCRS Pancake Mixer

Some modules require you to create a pancake stack. Each pancake type has its own rules—for example, certain types can’t be next to each other, while others must be adjacent to specific types. The stack also has a required number of layers.

The script takes the input (required layers and pancake types) and outputs a valid stack that satisfies all the stacking restrictions while including the required pancakes.

🛠️ GitHub Project – Pancake Mixer


2) UCRS Security Cracker

Other modules involve disarming a security system. This script helps you:

  • Determine the correct dice number to enter based on the inversion guide.
  • Decode the correct image sequence based on numerical attributes.

It’s especially useful in timed gameplay when there’s no room for hesitation.

🔐 GitHub Project – Security Cracker

Notes from the Author

If you ever see me peacefully fixing rockets under pressure—it’s not skill, it’s scripting.