Ports Runechat

This commit is contained in:
Chompstation Bot
2021-05-30 22:51:20 +00:00
parent 1c3e965b5c
commit 4476e4104d
48 changed files with 4183 additions and 1255 deletions

View File

@@ -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)

View File

@@ -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()

View File

@@ -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