Set screen b&w
From Unofficial QEdit Wiki Guide
Contents
Syntax
Syntax: set_screen_b&w
- None
Use
Used to make the camera have a black and white effect.
Example
1: ret
100: set R1 //Makes register 1 equal 00000001.
thread 101 //Threads function 101.
ret
101: sync //Waits 1 frame.
jmpi_= R1, 00000000 1 //If register 1 equals 00000000 jump to function 1.
set_screen_b&w //Makes the camera have a black and white effect.
jmp 101 //Jumps to function 101.
102: clear R1 //Makes register 1 equal 00000000.
ret