mirror of
https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13.git
synced 2025-12-11 10:22:13 +00:00
41 lines
1.6 KiB
Plaintext
41 lines
1.6 KiB
Plaintext
/obj/machinery/computer/shuttle/ferry
|
|
name = "transport ferry console"
|
|
desc = "A console that controls the transport ferry."
|
|
circuit = /obj/item/circuitboard/computer/ferry
|
|
shuttleId = "ferry"
|
|
possible_destinations = "ferry_home;ferry_away"
|
|
req_access = list(ACCESS_CENT_GENERAL)
|
|
|
|
var/allow_silicons = FALSE
|
|
var/allow_emag = FALSE
|
|
|
|
/obj/machinery/computer/shuttle/ferry/emag_act(mob/user)
|
|
if(!allow_emag)
|
|
to_chat(user, "<span class='warning'>[src]'s security firewall is far too powerful for you to bypass.</span>")
|
|
return SEND_SIGNAL(src, COMSIG_ATOM_EMAG_ACT)
|
|
return ..()
|
|
|
|
/obj/machinery/computer/shuttle/ferry/attack_ai()
|
|
return allow_silicons ? ..() : FALSE
|
|
|
|
/obj/machinery/computer/shuttle/ferry/attack_robot()
|
|
return allow_silicons ? ..() : FALSE
|
|
|
|
/obj/machinery/computer/shuttle/ferry/request
|
|
name = "ferry console"
|
|
circuit = /obj/item/circuitboard/computer/ferry/request
|
|
var/last_request //prevents spamming admins
|
|
var/cooldown = 600
|
|
possible_destinations = "ferry_home;ferry_away"
|
|
req_access = list(ACCESS_CENT_GENERAL)
|
|
resistance_flags = INDESTRUCTIBLE | LAVA_PROOF | FIRE_PROOF | ACID_PROOF
|
|
|
|
/obj/machinery/computer/shuttle/ferry/request/Topic(href, href_list)
|
|
..()
|
|
if(href_list["request"])
|
|
if(last_request && (last_request + cooldown > world.time))
|
|
return
|
|
last_request = world.time
|
|
to_chat(usr, "<span class='notice'>Your request has been received by CentCom.</span>")
|
|
to_chat(GLOB.admins, "<b>FERRY: <font color='#3d5bc3'>[ADMIN_LOOKUPFLW(usr)] (<A HREF='?_src_=holder;[HrefToken()];secrets=moveferry'>Move Ferry</a>)</b> is requesting to move the transport ferry to CentCom.</font>")
|