mirror of
https://github.com/Aurorastation/Aurora-Old.git
synced 2026-08-27 22:56:17 +01:00
18 lines
510 B
Plaintext
18 lines
510 B
Plaintext
/mob/living/proc/ventcrawl()
|
|
set name = "Crawl through Vent"
|
|
set desc = "Enter an air vent and crawl through the pipe system."
|
|
set category = "Abilities"
|
|
handle_ventcrawl()
|
|
return
|
|
|
|
/mob/living/proc/hide()
|
|
set name = "Hide"
|
|
set desc = "Allows to hide beneath tables or certain items. Toggled on or off."
|
|
set category = "Abilities"
|
|
|
|
if (layer != TURF_LAYER+0.2)
|
|
layer = TURF_LAYER+0.2
|
|
src << text("\blue You are now hiding.")
|
|
else
|
|
layer = MOB_LAYER
|
|
src << text("\blue You have stopped hiding.") |