-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[MIRROR] Cleans up signal use in bitrunning [NO GBP] [MDB IGNORE] (#2…
…4738) (#420) * Cleans up signal use in bitrunning [NO GBP] * Update avatar_connection.dm --------- Co-authored-by: SkyratBot <[email protected]> Co-authored-by: Jeremiah <[email protected]> Co-authored-by: Bloop <[email protected]>
- Loading branch information
1 parent
c1e4909
commit 662f450
Showing
13 changed files
with
169 additions
and
170 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,50 @@ | ||
/// from /obj/machinery/netpod/default_pry_open() : (mob/living/intruder) | ||
#define COMSIG_BITRUNNER_CROWBAR_ALERT "bitrunner_crowbar" | ||
/// from /atom/movable/screen/alert/bitrunning/qserver_domain_complete | ||
#define COMSIG_BITRUNNER_ALERT_SEVER "bitrunner_alert_sever" | ||
|
||
/// from /obj/effect/bitrunning/loot_signal: (points) | ||
#define COMSIG_BITRUNNER_GOAL_POINT "bitrunner_goal_point" | ||
|
||
/// from /obj/machinery/quantum_server/on_goal_turf_entered(): (atom/entered, reward_points) | ||
#define COMSIG_BITRUNNER_DOMAIN_COMPLETE "bitrunner_complete" | ||
// Netpods | ||
|
||
/// from /obj/machinery/netpod/sever_connection() | ||
#define COMSIG_BITRUNNER_NETPOD_SEVER "bitrunner_netpod_sever" | ||
|
||
/// from /obj/machinery/netpod/default_pry_open() : (mob/living/intruder) | ||
#define COMSIG_BITRUNNER_CROWBAR_ALERT "bitrunner_crowbar" | ||
|
||
/// from /obj/machinery/netpod/on_take_damage() | ||
/// from /obj/machinery/netpod/on_damage_taken() | ||
#define COMSIG_BITRUNNER_NETPOD_INTEGRITY "bitrunner_netpod_damage" | ||
|
||
/// from /obj/structure/hololadder and complete alert | ||
#define COMSIG_BITRUNNER_SAFE_DISCONNECT "bitrunner_disconnect" | ||
/// from /obj/machinery/netpod/open_machine() | ||
#define COMSIG_BITRUNNER_NETPOD_OPENED "bitrunner_netpod_opened" | ||
|
||
// Server | ||
|
||
/// from /obj/machinery/quantum_server/on_goal_turf_entered(): (atom/entered, reward_points) | ||
#define COMSIG_BITRUNNER_DOMAIN_COMPLETE "bitrunner_complete" | ||
|
||
/// from /obj/machinery/quantum_server/generate_loot() | ||
#define COMSIG_BITRUNNER_CACHE_SEVER "bitrunner_cache_sever" | ||
|
||
/// from /obj/machinery/netpod/open_machine(), /obj/machinery/quantum_server, etc (obj/machinery/netpod) | ||
#define COMSIG_BITRUNNER_SEVER_AVATAR "bitrunner_sever" | ||
/// from /obj/machinery/quantum_server/sever_connection() | ||
#define COMSIG_BITRUNNER_QSRV_SEVER "bitrunner_qserver_sever" | ||
|
||
/// from /obj/machinery/quantum_server/shutdown() : (mob/living) | ||
#define COMSIG_BITRUNNER_SHUTDOWN_ALERT "bitrunner_shutdown" | ||
|
||
// Notifies the bitrunners | ||
/// from /datum/antagonist/cyber_police/proc/notify() : | ||
/// from /obj/machinery/quantum_server/notify_threat() | ||
#define COMSIG_BITRUNNER_THREAT_CREATED "bitrunner_threat" | ||
|
||
// Informs the server to up the threat count | ||
/// from event spawns: (mob/living) | ||
#define COMSIG_BITRUNNER_SPAWN_GLITCH "bitrunner_spawn_glitch" | ||
|
||
/// from /obj/machinery/quantum_server/refreshParts(): (servo rating) | ||
#define COMSIG_BITRUNNER_SERVER_UPGRADED "bitrunner_server_upgraded" | ||
|
||
/// from /obj/machinery/quantum_server/scrub_vdom() | ||
#define COMSIG_BITRUNNER_DOMAIN_SCRUBBED "bitrunner_domain_scrubbed" | ||
|
||
/// from /obj/machinery/netpod/open_machine() | ||
#define COMSIG_BITRUNNER_NETPOD_OPENED "bitrunner_netpod_opened" | ||
/// from /obj/machienry/quantum_server/station_spawn() | ||
#define COMSIG_BITRUNNER_STATION_SPAWN "bitrunner_station_spawn" | ||
|
||
// Ladder | ||
/// from /obj/structure/hololadder/disconnect() | ||
#define COMSIG_BITRUNNER_LADDER_SEVER "bitrunner_ladder_sever" | ||
|
||
|
||
/// deprecated | ||
#define COMSIG_BITRUNNER_SPAWN_GLITCH "bitrunner_spawn_glitch" |
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.