mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 02:09:41 +00:00
Ports Runechat
This commit is contained in:
@@ -191,7 +191,7 @@
|
||||
update_use_power(USE_POWER_ACTIVE)
|
||||
regulating_temperature = 1
|
||||
audible_message("\The [src] clicks as it starts [environment.temperature > target_temperature ? "cooling" : "heating"] the room.",\
|
||||
"You hear a click and a faint electronic hum.")
|
||||
"You hear a click and a faint electronic hum.", runemessage = "* click *")
|
||||
playsound(src, 'sound/machines/click.ogg', 50, 1)
|
||||
else
|
||||
//check for when we should stop adjusting temperature
|
||||
@@ -199,7 +199,7 @@
|
||||
update_use_power(USE_POWER_IDLE)
|
||||
regulating_temperature = 0
|
||||
audible_message("\The [src] clicks quietly as it stops [environment.temperature > target_temperature ? "cooling" : "heating"] the room.",\
|
||||
"You hear a click as a faint electronic humming stops.")
|
||||
"You hear a click as a faint electronic humming stops.", runemessage = "* click *")
|
||||
playsound(src, 'sound/machines/click.ogg', 50, 1)
|
||||
|
||||
if(regulating_temperature)
|
||||
|
||||
@@ -206,7 +206,7 @@
|
||||
|
||||
else if((occupant.health >= heal_level || occupant.health == occupant.getMaxHealth()) && (!eject_wait))
|
||||
playsound(src, 'sound/machines/medbayscanner1.ogg', 50, 1)
|
||||
audible_message("\The [src] signals that the cloning process is complete.")
|
||||
audible_message("\The [src] signals that the cloning process is complete.", runemessage = "* ding *")
|
||||
connected_message("Cloning Process Complete.")
|
||||
locked = 0
|
||||
go_out()
|
||||
|
||||
@@ -519,9 +519,9 @@
|
||||
if(electronics)
|
||||
sleep(10)
|
||||
if(oldfuel > fuel && oldfood > food)
|
||||
src.audible_message("\The [src] lets out a somehow reassuring chime.")
|
||||
src.audible_message("\The [src] lets out a somehow reassuring chime.", runemessage = "* reassuring chime *")
|
||||
else if(oldfuel < fuel || oldfood < food)
|
||||
src.audible_message("\The [src] lets out a somehow ominous chime.")
|
||||
src.audible_message("\The [src] lets out a somehow ominous chime.", runemessage = "* ominous chime *")
|
||||
food = oldfood
|
||||
fuel = oldfuel
|
||||
|
||||
|
||||
Reference in New Issue
Block a user