mirror of
https://github.com/cybergirlvannie/OpenSS13.git
synced 2026-06-17 20:12:29 +01:00
29 lines
548 B
Plaintext
29 lines
548 B
Plaintext
/*
|
|
* Communications -- the communications computer
|
|
*
|
|
* Used to call the emergency shuttle.
|
|
*/
|
|
|
|
obj/machinery/computer/communications
|
|
name = "communications"
|
|
icon = 'stationobjs.dmi'
|
|
icon_state = "comm_computer"
|
|
|
|
|
|
// Call the shuttle
|
|
|
|
verb/call_shuttle()
|
|
set src in oview(1)
|
|
src.add_fingerprint(usr)
|
|
if(stat & NOPOWER) return
|
|
call_shuttle_proc(usr)
|
|
|
|
// Cancel the shuttle call
|
|
|
|
verb/cancel_call()
|
|
set src in oview(1)
|
|
src.add_fingerprint(usr)
|
|
if(stat & NOPOWER) return
|
|
cancel_call_proc(usr)
|
|
|