forked from ParadiseSS13/Paradise
-
Notifications
You must be signed in to change notification settings - Fork 131
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into translate
- Loading branch information
Showing
277 changed files
with
2,562 additions
and
1,185 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#define AB_CHECK_RESTRAINED (1<<0) | ||
#define AB_CHECK_STUNNED (1<<1) | ||
#define AB_CHECK_LYING (1<<2) | ||
#define AB_CHECK_CONSCIOUS (1<<3) | ||
#define AB_CHECK_TURF (1<<4) | ||
#define AB_CHECK_HANDS_BLOCKED (1<<5) | ||
#define AB_CHECK_IMMOBILE (1<<6) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
// main_status var | ||
#define APC_EXTERNAL_POWER_NOTCONNECTED 0 | ||
#define APC_EXTERNAL_POWER_NOENERGY 1 | ||
#define APC_EXTERNAL_POWER_GOOD 2 | ||
|
||
//opened | ||
#define APC_CLOSED 0 | ||
#define APC_OPENED 1 | ||
#define APC_COVER_OFF 2 | ||
|
||
#define APC_AUTOFLAG_ALL_OFF 0 | ||
#define APC_AUTOFLAG_ENVIRO_ONLY 1 | ||
#define APC_AUTOFLAG_EQUIPMENT_OFF 2 | ||
#define APC_AUTOFLAG_ALL_ON 3 | ||
|
||
//electronics_state | ||
#define APC_ELECTRONICS_NONE 0 | ||
#define APC_ELECTRONICS_INSTALLED 1 | ||
#define APC_ELECTRONICS_SECURED 2 | ||
|
||
/// Power channel is off, anything connected to it is not powered, cannot be set manually by players | ||
#define APC_CHANNEL_SETTING_OFF 0 | ||
/// APC power channel Setting Off, if set while apc is "on" set apc to "off" otherwise set to "auto-off" | ||
#define APC_CHANNEL_SETTING_AUTO_OFF 1 | ||
/// APC power channel setting on, | ||
#define APC_CHANNEL_SETTING_ON 2 //on | ||
// APC user setting, | ||
#define APC_CHANNEL_SETTING_AUTO_ON 3 //auto |
Oops, something went wrong.