ID:150231
 
how do i make verbs appear when they when it is the right time instead of them just being there like the verb get
You could use set src in view() or make the verb a proc like so:

mob/proc/Blah()
src<<"BLAH!"

mob/verb/Add_Blah()
usr.verbs+=/mob/proc/Blah
In response to Nadrew
what about this


Get()
set category = "Commands"
set hidden = 1
set src in oview(1)
src.loc = usr
view() << "[usr] picks up the [src]"