LLC24 Mission Solutions
Official LiteScript / Assembly Solutions
These are the canonical solutions used for LLC24 engineering missions. The solutions are drawn directly from the authoritative solutionCode
of each mission JSON.
For full reference and language details, see LLC24 LiteScript Reference.
An Introduction
No expected outputs, all kepts to 0. This is a test area for code.
Solution:
MOV @IN0, @M00 MOV @IN1, @M01 MOV @IN2, @M02 MOV 0, @BLU
ClearPath SafeGo
Illuminate green 255 one tick after IN2 ≥128, otherwise lamp stays dark.
Solution:
JGR @IN2,127,3 MOV 0,@GRN JMP 0 MOV 255,@GRN JMP 0
Deck Glow
Keep blue at 100 for all ticks; inputs ignored.
Solution:
MOV 100,@BLU
Project Ghostlight
Red shows bit-flipped IN0 one tick later; all other colours stay dark.
Solution:
NOT @M00,@RED MOV @IN0,@M00
Loadmaster Hoist Alert
Blaze white 255 several ticks after hoist load ≥200, then stay lit for remainder of run.
Solution:
MOV @M00,@WHT MOV 0,@M00 JGR @IN0,199,4 JMP 0 MOV 255,@M00 JMP 0
Leafline Humidity Sentinel
Blue outputs the sum of delayed IN0 and IN1 XOR IN0 values each tick.
Solution:
MOV @IN0, @M00 XOR @IN1,@IN0,@M01 ADD @M00, @M01, @BLU
Interval Signal Hold
Update outputs on threshold: each output holds value until next change, tracking shifts across channels.
Solution:
SUB @IN0, @IN1, @M00 JGR @M00, 0, 09 MOV @IN2, @RED ADD @M00, @IN2, @M01 DIV @M01, 2, @GRN CLR @BLU JMP 0 MOV @IN2, @BLU MOD @IN0, 5, @M02 JNE @M02, 0, 02 INC @WHT, 1 JMP 0
IndustriMon Red Alert
Light solid red (255) one tick after IN0 is non-zero; otherwise lamp stays off.
Solution:
JEQ @IN0,0,3 MOV 255,@RED JMP 0 MOV 0,@RED
HawkSecurity Spotter
Flood white 255 soon after IN0 or IN1 reach 50+; otherwise lamp stays dark.
Solution:
MOV @M00,@WHT MOV 0,@M00 JGR @IN0,49,5 JGR @IN1,49,5 JMP 0 MOV 255,@M00 JMP 0
Threshold Blues
If input 0 exceeds input 1, matching the intensity of input 2 to blue. Default blue off.
Solution:
JGR @IN0, @IN1, 02 MOV 0, @BLU MOV @IN2, @BLU