mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-02-06 06:10:03 +00:00
14 lines
276 B
Plaintext
14 lines
276 B
Plaintext
/area
|
|
var/enter_message
|
|
var/exit_message
|
|
|
|
/area/Entered(var/atom/movable/AM, oldLoc)
|
|
. = ..()
|
|
if(enter_message && isliving(AM))
|
|
to_chat(AM, enter_message)
|
|
|
|
/area/Exited(var/atom/movable/AM, newLoc)
|
|
. = ..()
|
|
if(exit_message && isliving(AM))
|
|
to_chat(AM, exit_message)
|