/procpath
Type used to sanely access vars on a proc. Example:
var/procpath/some_proc = /proc/foo
world.log << some_proc.name
Do not instantiate this type directly, it's just an interface for procs. Instead of istype(proc, /procpath), use isproc(proc). (defined in address.dm)
Vars | |
category | defined by using set category = "foo" in the proc |
---|---|
desc | defined by using set desc = "foo" in the proc |
invisibility | defined by using set invisibility = 1 in the proc |
name | defined by using set name = "foo" in the proc |
Var Details
category
defined by using set category = "foo"
in the proc
desc
defined by using set desc = "foo"
in the proc
invisibility
defined by using set invisibility = 1
in the proc
name
defined by using set name = "foo"
in the proc