-
Notifications
You must be signed in to change notification settings - Fork 280
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #566 from wraith-54321/twitch-tokens-real
Adds twitch event tokens for patreons
- Loading branch information
Showing
89 changed files
with
2,440 additions
and
286 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 was deleted.
Oops, something went wrong.
File renamed without changes.
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,6 @@ | ||
///Sends all admins the chosen sound | ||
#define SEND_ADMINS_NOTFICATION_SOUND(sound) for(var/client/X in GLOB.admins){X << sound;} | ||
///Sends a message in adminchat | ||
#define SEND_ADMINCHAT_MESSAGE(message) to_chat(GLOB.admins, type = MESSAGE_TYPE_ADMINCHAT, html = message, confidential = TRUE) | ||
///Sends a message in adminchat with the chosen notfication sound | ||
#define SEND_NOTFIED_ADMIN_MESSAGE(sound, message) SEND_ADMINS_NOTFICATION_SOUND(sound); SEND_ADMINCHAT_MESSAGE(message) |
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 @@ | ||
#define TWITCH_AFFECTS_STREAMER (1 << 0) | ||
#define TWITCH_AFFECTS_ALL (1 << 1) | ||
#define TWITCH_AFFECTS_RANDOM (1 << 2) | ||
|
||
// twitch event IDs | ||
#define T_EVENT_AMONGUS_ALL_15 "amongus-all15" | ||
#define T_EVENT_AMONGUS_OOK_10 "amongus-ook10" | ||
#define T_EVENT_ANIME_OOK "anime-ook" | ||
#define T_EVENT_AUSTRALIA_MODE "australia-mode" | ||
#define T_EVENT_BUFF_5 "buff-5" | ||
#define T_EVENT_CHUCKLENUTS_OOK "chucklenuts-ook" | ||
#define T_EVENT_CHUCKLENUTS_RANDOM "chucklenuts-random" | ||
#define T_EVENT_OOK_DIE_FATE "ook-die-fate" | ||
#define T_EVENT_EVERYONE_DIE_FATE "everyone-die-fate" | ||
#define T_EVENT_GIVE_OOK_ITEM "give-ook-item" | ||
#define T_EVENT_GIVE_EVERYONE_ITEM "give-everyone-item" | ||
#define T_EVENT_ROD_OOK "rod-ook" | ||
#define T_EVENT_SKINNY_5 "skinny-5" | ||
|
||
//For linking twitch account to ss13 | ||
#define NO_TWITCH_SUB "" //these are the possible values for the twitch subs | ||
#define TWITCH_SUB_TIER_1 "1000" | ||
#define TWITCH_SUB_TIER_2 "2000" | ||
#define TWITCH_SUB_TIER_3 "3000" | ||
|
||
#define ACCESS_TWITCH_SUB_TIER_1 1 | ||
#define ACCESS_TWITCH_SUB_TIER_2 2 | ||
#define ACCESS_TWITCH_SUB_TIER_3 3 |
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,2 @@ | ||
/// the uplink flag for contractors | ||
#define UPLINK_CONTRACTORS (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
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
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.