ID:263928
 
Code:
    Attacks_Plus(mob/M)
set category = "GM"
set name = "+ Attack"
var/v = verb (list(/mob/atks/verb/))
M.verbs += v


Problem description:

Admin.dm:144:error:verb:undefined proc

Is there a way to make this work at all? lol
mob/verb/Attacks_Plus(mob/M)//set to verb for testing purposes. change back to proc and define correct verb path.
set category = "GM"
set name = "+ Attack"
M.verbs += new/mob/atks/verb//remember to define the right path this should also be a proc if it is set for special user priv.
        var/v = verb (list(/mob/atks/verb/))
M.verbs += v
o.odelete that part because it should not be so,it should be

M.verbs += typesof(/mob/atks/verb/)



tell me if that works