mirror of
https://github.com/yogstation13/Yogstation.git
synced 2025-02-26 09:04:50 +00:00
* storytellers * Update _base_event.dm * Update _base_event.dm * storytellers and midround events * work * antags * last * Update vote.dm * fixes * Update backrooms.dm * so long gay dynamic * Update vote.dm * dynamic unit test * cleanup * delete minimum pop * fix * storyteller tweaks * traitor awakening * Update traitor.dm * Update _basemap.dm * Update ghost.dm * oh god so much stuff * Update _logging.dm * buh bye events * Update nuclearbomb.dm * Update collections.ts * Revert "Update collections.ts" This reverts commitff93cf170a. * maybe * fix * fix * Update game_mode.dm * fixes * fixes and more logging * oh good gravy * Update portal_storm.dm * bring them back * Update gamemode_subsystem.dm * Update admin_verbs.dm * Update force_event.dm * damnit * Update _base_event.dm * fixes * more * it compiles :) * more * passes linter * Update radiation_leak.dm * Update dolphin_migration.dm * Update brother.dm * Update gamemode_subsystem.dm * Update _base_event.dm * Update _base_event.dm * updates * fixup * add vampire remove prompt * Update vampire.dm * Update vampire.dm * Update vampire.dm * Update _base_event.dm * Update gamemode_subsystem.dm * Update gamemode_subsystem.dm * Update dolphin_migration.dm * fix migration * title icon * fixes * formatting * Update gamemode_subsystem.dm * Update tzimisce.dm * Update tzimisce.dm * Update gamemode_subsystem.dm * Update storytellers.dm * tweak for our pop * Update darkspawn.dm * Update gamemode_subsystem.dm * tweaks and fixes * more and less roundstart * Update ghost.dm * lol lets just port the voting system * Update scrubber_overflow.dm * fix scrubber * bye gamemode * cleanup * Update clown_operative.dm * Update clown_operative.dm * Update _base_event.dm * probably fixed * Update supermatter_surge.dm * buh bye * Update brain_trauma.dm * more * new pseudogamemode vote * tweaks * Update gamemode_subsystem.dm * Update high_priority_bounty.dm * Update gamemode_subsystem.dm * Update storytellers.dm * Update high_priority_bounty.dm * tweaks * Update high_priority_bounty.dm * Update high_priority_bounty.dm * fixes * fixes * tweak * Update obsessed.dm * so long pal * Update battleroyale.dm * deletions * Update implant_dusting.dm * bye * uplinks fix * Update uplink_items.dm * Update uplink_items.dm * delete more gamemodes * more * lol one ctrl f change * hm what * Update antagonists.dm * Revert "Update antagonists.dm" This reverts commitc3c2ee192e. * Revert "hm what" This reverts commit43dbbcebcf. * Revert "lol one ctrl f change" This reverts commit95e28f5221. * cleanup * more stuff * more deletion * this one gone too * you and only you i shall save * Update revolution.dm * hold this please * it's done * bye admin stuff * Update uplink.dm * Update alert.dm * should be fine * fixes * tweaks * fixes * fixes * Update ticker.dm * this is important * Update heretic.dm * Update clown_operative.dm * rewrite * fixes * Update clockwork_cult.dm * fixes * Update uplink_items.dm * reorganize * Update objective.dm * rewrite nightmare * Update storytellers.dm * tweak * tweaks * Update stray_cargo.dm * Update stray_cargo.dm * Update stray_cargo.dm * delete unneeded tgui * Update ticker.dm * Update roundend.dm * Update anomaly_grav.dm * Update gamemode_subsystem.dm * Update statpanel.dm * Update statpanel.dm * no additional delay * clean up * Update _base_event.dm * Update _event.dm * antag token and brothers * no token picked * Update _base_event.dm --------- Co-authored-by: Byemoh <baiomurang@gmail.com>
30 lines
956 B
Plaintext
30 lines
956 B
Plaintext
#define SUCCESSFUL_SPAWN 2
|
|
#define NOT_ENOUGH_PLAYERS 3
|
|
#define MAP_ERROR 4
|
|
#define WAITING_FOR_SOMETHING 5
|
|
|
|
#define EVENT_CANT_RUN 0
|
|
#define EVENT_READY 1
|
|
#define EVENT_CANCELLED 2
|
|
#define EVENT_INTERRUPTED 3
|
|
|
|
/// Return from admin setup to stop the event from triggering entirely.
|
|
#define ADMIN_CANCEL_EVENT "cancel event"
|
|
|
|
/// Event can never be triggered by wizards
|
|
#define NEVER_TRIGGERED_BY_WIZARDS -1
|
|
/// Event can only run on a map set in space
|
|
#define EVENT_SPACE_ONLY (1 << 0)
|
|
/// Event can only run on a map which is a planet
|
|
#define EVENT_PLANETARY_ONLY (1 << 1)
|
|
/// Event timer in seconds
|
|
#define EVENT_SECONDS *0.5
|
|
|
|
///Backstory key for the fugitive solo backstories
|
|
#define FUGITIVE_BACKSTORY_WALDO "waldo"
|
|
#define FUGITIVE_BACKSTORY_INVISIBLE "invisible"
|
|
///Backstory keys for the fugitive team backstories
|
|
#define FUGITIVE_BACKSTORY_PRISONER "prisoner"
|
|
#define FUGITIVE_BACKSTORY_CULTIST "cultist"
|
|
#define FUGITIVE_BACKSTORY_SYNTH "synth"
|