mob
proc
Die()
usr << "Died"
Live()
usr << "Alive"
verb
Verb_Test()
usr.verbs += /mob/proc/Die
Problem description:
While I've already figured out how to give someone access to a proc for use as a verb, I'm trying to figure out how to make it so that same person is able to gain multiple procs in the same line of code. I want to gain the Die and Live procs as verbs with the same "usr.verbs +=" line of code.