mirror of
https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13.git
synced 2025-12-11 18:33:36 +00:00
15 lines
362 B
Plaintext
15 lines
362 B
Plaintext
/**
|
|
* # Hello World preset
|
|
*
|
|
* Says "Hello World" when triggered. Needs to be wired up and connected first.
|
|
*/
|
|
/obj/item/integrated_circuit/loaded/hello_world
|
|
|
|
/obj/item/integrated_circuit/loaded/hello_world/Initialize(mapload)
|
|
. = ..()
|
|
var/obj/item/circuit_component/speech/speech = new()
|
|
add_component(speech)
|
|
|
|
speech.message.set_input("Hello World")
|
|
|