Goonstation 13 - Modules - TypesVar Details

/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

categorydefined by using set category = "foo" in the proc
descdefined by using set desc = "foo" in the proc
invisibilitydefined by using set invisibility = 1 in the proc
namedefined 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