This repository has been archived by the owner on Mar 10, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Terra <[email protected]>
- Loading branch information
Showing
32 changed files
with
2,020 additions
and
12 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#define PROTECT_PATH(Path)\ | ||
##Path/IsProtected(){\ | ||
return TRUE;\ | ||
} | ||
|
||
/datum/proc/IsProtected() | ||
return FALSE |
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 @@ | ||
#define TGS_EXTERNAL_CONFIGURATION | ||
#define TGS_DEFINE_AND_SET_GLOBAL(Name, Value) GLOBAL_VAR_INIT(##Name, ##Value); GLOBAL_PROTECT(##Name) | ||
#define TGS_READ_GLOBAL(Name) GLOB.##Name | ||
#define TGS_WRITE_GLOBAL(Name, Value) GLOB.##Name = ##Value | ||
#define TGS_PROTECT_DATUM(Path) PROTECT_PATH(##Path) | ||
#define TGS_WORLD_ANNOUNCE(message) to_chat(world, "<span class='boldannounce'><h3>[html_encode(##message)]</h3></span>") | ||
#define TGS_NOTIFY_ADMINS(event) message_admins(##event) | ||
#define TGS_INFO_LOG(message) log_world("TGS Info: [##message]") | ||
#define TGS_WARNING_LOG(message) log_world("TGS Warn: [##message]") | ||
#define TGS_ERROR_LOG(message) log_world("TGS Error: [##message]") | ||
#define TGS_CLIENT_COUNT length(GLOB.clients) |
Oops, something went wrong.