The screen glowed a steady, clinical blue as Elias sat before the console of the Great Excavator. Below him, the automated mining rig hummed, waiting for its next set of instructions to tear into the silicon-rich veins of the asteroid.

8.2. Interaction with Control Elements (Limited)

UOPilot is pixel-based, not UI-automation based. For buttons, always use PXCHK to confirm visual state changes.

if %health < 50
    send F1 // Press F1 to heal
end_if

Example: if 100, 200 16777215 checks if the pixel at (100, 200) matches a specific color code.

left [x y]: Performs a left mouse click at the specified coordinates. If coordinates are omitted, it clicks at the current cursor position. right [x y]: Performs a right mouse click.

for #i 1 10 1 / end_for: A standard loop that runs a set number of times (in this case, 10).