code/__DEFINES/machines.dm 
APC_NOT_CHARGING | APC is not receiving power |
---|---|
APC_IS_CHARGING | APC is currently receiving power and storing it |
APC_FULLY_CHARGED | APC battery is at 100% |
START_PROCESSING_ON_INIT | Indicates the machine will automatically start processing right after it's Initialize() is ran. |
START_PROCESSING_MANUALLY | Machines with this flag will not start processing when it's spawned. Use this if you want to manually control when a machine starts processing. |
Define Details
APC_FULLY_CHARGED 
APC battery is at 100%
APC_IS_CHARGING 
APC is currently receiving power and storing it
APC_NOT_CHARGING 
APC is not receiving power
START_PROCESSING_MANUALLY 
Machines with this flag will not start processing when it's spawned. Use this if you want to manually control when a machine starts processing.
START_PROCESSING_ON_INIT 
Indicates the machine will automatically start processing right after it's Initialize()
is ran.