mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2025-12-27 18:51:53 +00:00
32 lines
1.4 KiB
Plaintext
32 lines
1.4 KiB
Plaintext
// channel numbers for power
|
|
#define EQUIP 1
|
|
#define LIGHT 2
|
|
#define ENVIRON 3
|
|
#define TOTAL 4 //for total power used only
|
|
|
|
//computer3 error codes, move lower in the file when it passes dev -Sayu
|
|
#define PROG_CRASH 1 // Generic crash
|
|
#define MISSING_PERIPHERAL 2 // Missing hardware
|
|
#define BUSTED_ASS_COMPUTER 4 // Self-perpetuating error. BAC will continue to crash forever.
|
|
#define MISSING_PROGRAM 8 // Some files try to automatically launch a program. This is that failing.
|
|
#define FILE_DRM 16 // Some files want to not be copied/moved. This is them complaining that you tried.
|
|
#define NETWORK_FAILURE 32
|
|
|
|
#define MINERAL_MATERIAL_AMOUNT 2000 //The amount of materials you get from a sheet of mineral like iron/diamond/glass etc
|
|
|
|
#define IMPRINTER 1 //For circuits. Uses glass/chemicals.
|
|
#define PROTOLATHE 2 //New stuff. Uses glass/metal/chemicals
|
|
#define AUTOLATHE 4 //Uses glass/metal only.
|
|
#define CRAFTLATHE 8 //Uses fuck if I know. For use eventually.
|
|
#define MECHFAB 16 //Remember, objects utilising this flag should have construction_time and construction_cost vars.
|
|
#define PODFAB 32 //Used by the spacepod part fabricator. Same idea as the mechfab
|
|
//Note: More then one of these can be added to a design but imprinter and lathe designs are incompatable.
|
|
|
|
#define HYDRO_SPEED_MULTIPLIER 1
|
|
|
|
#define NANO_IGNORE_DISTANCE 1
|
|
|
|
// multitool_topic() shit
|
|
#define MT_ERROR -1
|
|
#define MT_UPDATE 1
|
|
#define MT_REINIT 2 |