mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-17 10:03:50 +01:00
26f28cb7e7
* THE WORK, IT GOES AND SO IT GOES * darker yet darker * more changes * Almost done, let's post the pr and have some dev people test it out. * update comment * small change * pushing , then we address changes * Apply suggestions from code review Co-authored-by: 1080pCat <96908085+1080pCat@users.noreply.github.com> Signed-off-by: Qwertytoforty <52090703+Qwertytoforty@users.noreply.github.com> * more progress * final bar lines * aditional tweaks * Update telecomns_returns.dmm * Update code/modules/awaymissions/mission_code/ruins/telecomns.dm Co-authored-by: Ryan <80364400+Sirryan2002@users.noreply.github.com> Signed-off-by: Qwertytoforty <52090703+Qwertytoforty@users.noreply.github.com> * Apply suggestions from code review Co-authored-by: Ryan <80364400+Sirryan2002@users.noreply.github.com> Signed-off-by: Qwertytoforty <52090703+Qwertytoforty@users.noreply.github.com> * sirian changes * emp weakness, light changes * no runtimes, shoot borgs * sorry for all the commits just update to master thanks * Update code/modules/awaymissions/mission_code/ruins/telecomns.dm Co-authored-by: warriorstar-orion <orion@snowfrost.garden> Signed-off-by: Qwertytoforty <52090703+Qwertytoforty@users.noreply.github.com> * fixes * fixes pathing. Voices * removes always spawn * Apply suggestions from code review Co-authored-by: Luc <89928798+lewcc@users.noreply.github.com> Signed-off-by: Qwertytoforty <52090703+Qwertytoforty@users.noreply.github.com> * more changes * requested string change * Update code/modules/awaymissions/mission_code/ruins/telecomns.dm Co-authored-by: Luc <89928798+lewcc@users.noreply.github.com> Signed-off-by: Qwertytoforty <52090703+Qwertytoforty@users.noreply.github.com> * lewcs final changes * Apply suggestions from code review Co-authored-by: Luc <89928798+lewcc@users.noreply.github.com> Signed-off-by: Qwertytoforty <52090703+Qwertytoforty@users.noreply.github.com> --------- Signed-off-by: Qwertytoforty <52090703+Qwertytoforty@users.noreply.github.com> Co-authored-by: 1080pCat <96908085+1080pCat@users.noreply.github.com> Co-authored-by: Ryan <80364400+Sirryan2002@users.noreply.github.com> Co-authored-by: warriorstar-orion <orion@snowfrost.garden> Co-authored-by: Luc <89928798+lewcc@users.noreply.github.com>
46 lines
1.1 KiB
Plaintext
46 lines
1.1 KiB
Plaintext
/*
|
|
All machine presets go in here
|
|
*/
|
|
|
|
// STATION CORE //
|
|
/obj/machinery/tcomms/core/station
|
|
network_id = "STATION-CORE"
|
|
|
|
// MINING RELAY //
|
|
/obj/machinery/tcomms/relay/mining
|
|
network_id = "MINING-RELAY"
|
|
autolink_id = "STATION-CORE"
|
|
|
|
// ENGINEERING RELAY //
|
|
/obj/machinery/tcomms/relay/engineering
|
|
network_id = "ENGINEERING-RELAY"
|
|
autolink_id = "STATION-CORE"
|
|
active = FALSE
|
|
|
|
// RUSKIE RELAY //
|
|
/obj/machinery/tcomms/relay/ruskie
|
|
network_id = "RUSKIE-RELAY"
|
|
autolink_id = "STATION-CORE"
|
|
active = FALSE
|
|
hidden_link = TRUE
|
|
|
|
// CC RELAY //
|
|
/obj/machinery/tcomms/relay/cc
|
|
network_id = "CENTCOMM-RELAY"
|
|
autolink_id = "STATION-CORE"
|
|
hidden_link = TRUE
|
|
password_bypass = TRUE
|
|
|
|
/// DVORAK RELAY
|
|
/obj/machinery/tcomms/relay/dvorak
|
|
network_id = "DEBUG_RELAY_DO_NOT_REMOVE" // I'll change this if needed to avoid confusion, but if I was trying to sneak into a relay system, well...
|
|
autolink_id = "STATION-CORE"
|
|
hidden_link = TRUE
|
|
password_bypass = TRUE // No one can steal this anyway.
|
|
active = TRUE
|
|
|
|
GLOBAL_VAR(cc_tcomms_relay_uid)
|
|
/obj/machinery/tcomms/relay/cc/Initialize(mapload)
|
|
. = ..()
|
|
GLOB.cc_tcomms_relay_uid = UID()
|