mirror of
https://github.com/Aurorastation/Aurora-Old.git
synced 2026-07-22 05:02:23 +01:00
Watch Update
The watch now shows the shuttle ETA/ETD whenever applicable. Also shows the date, and checks time whenever you just examine it and are within a tile radius.
This commit is contained in:
@@ -79,7 +79,6 @@
|
||||
w_class = 1
|
||||
wired = 1
|
||||
species_restricted = null
|
||||
// var/time = 1
|
||||
|
||||
verb/checktime()
|
||||
set category = "Object"
|
||||
@@ -87,7 +86,9 @@
|
||||
set src in usr
|
||||
|
||||
if(wired && !clipped)
|
||||
usr << "You check your watch, spotting a digital collection of numbers reading '[worldtime2text()]'"
|
||||
usr << "You check your watch, spotting a digital collection of numbers reading '[worldtime2text()]'. Today's date is '[time2text(world.time, "Month DD")]. [game_year]'."
|
||||
if (emergency_shuttle.get_status_panel_eta())
|
||||
usr << "\red The shuttle's status is reported as: [emergency_shuttle.get_status_panel_eta()]."
|
||||
else if(wired && clipped)
|
||||
usr << "You check your watch realising it's still open"
|
||||
else
|
||||
@@ -105,6 +106,11 @@
|
||||
else
|
||||
usr.visible_message ("<span class='notice'>[usr] taps their foot on the floor, arrogantly pointing at the [src] on their wrist with a look of derision in their eyes, not noticing it's broken</span>", "<span class='notice'>You point down at the [src], an arrogant look about your eyes.</span>")
|
||||
|
||||
examine(mob/user)
|
||||
..()
|
||||
if (get_dist(src, user) <= 1)
|
||||
checktime()
|
||||
|
||||
attackby(obj/item/weapon/W, mob/user)
|
||||
if(istype(W, /obj/item/weapon/screwdriver))
|
||||
if (clipped) //Using clipped because adding a new var for something is dumb
|
||||
@@ -215,4 +221,4 @@
|
||||
amplification = 2.5
|
||||
usr << "You wiggle your fingers, setting the gloves to the highest setting: Extremely Lethal. You will now hit 2.5x as hard."
|
||||
|
||||
*/
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user