-
-
Notifications
You must be signed in to change notification settings - Fork 285
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' of https://github.com/Citadel-Station-13/Citade…
…l-Station-13-RP into great_perspective
- Loading branch information
Showing
236 changed files
with
7,810 additions
and
14,308 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
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 |
---|---|---|
@@ -1,7 +1,13 @@ | ||
//! player flags | ||
/// exempt from any job timelock system | ||
/// exempt from any job timelock system: this includes the VPN bunker! | ||
#define PLAYER_FLAG_JEXP_EXEMPT (1<<0) | ||
/// age verified | ||
#define PLAYER_FLAG_AGE_VERIFIED (1<<1) | ||
/// connected, recorded, and *not* blocked through panic bunker when operating in connection mode | ||
#define PLAYER_FLAG_CONSIDERED_SEEN (1<<2) | ||
|
||
DEFINE_BITFIELD(player_flags, list( | ||
BITFIELD(PLAYER_FLAG_JEXP_EXEMPT), | ||
BITFIELD(PLAYER_FLAG_AGE_VERIFIED), | ||
BITFIELD(PLAYER_FLAG_CONSIDERED_SEEN), | ||
)) |
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,11 @@ | ||
/// playtime key for alive | ||
#define PLAYER_PLAYTIME_LIVING "living" | ||
/// playtime key for died/as observer from a dead character | ||
#define PLAYER_PLAYTIME_DEAD "dead" | ||
/// playtime key for observer (but not because they died ofcourse) | ||
#define PLAYER_PLAYTIME_OBSERVER "observer" | ||
/// playtime key for lobby | ||
#define PLAYER_PLAYTIME_LOBBY "lobby" | ||
/// playtime key for role id | ||
#define PLAYER_PLAYTIME_ROLE(id) "role-[id]" | ||
|
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
Oops, something went wrong.