ID:179663
 
Like if a player accepts a challenge how would you add a certain verb to both characters?
BurningIce wrote:
Like if a player accepts a challenge how would you add a certain verb to both characters?

tHIS Q HAS BEEN ANSWERED RIGHT HERE IN NOOBIE CENTRAL SEARCH FOR IT FIRST
In response to Air _King
Sorry...
In response to BurningIce
mob.verbs += /mob/verb/whatever
In response to PyRoMaNiAc
That wouldn't quite work because adding a verb wouldn't do anything, you should add a proc:

mob/proc/Blah()
src<<"BLAH!"
mob/verb/Bleh()
usr.verbs+=/mob/proc/Blah


This way the verb won't be there before you add it.