ID:169752
 
I was wondering how do I make an attack verb appear in the panel once the usr has reached the requirments and makeing it so that the usr can only learn it once.
For one, you need to add the verb to either a datum or different verb directory, such as /mob/Skills/verb .

After the user has learned the attack, you just add it to their verbs with something like src.verbs += /mob/Skills/verb/AttackVerbHere .

Then, you could just set a usr's variable to a true variable once he learns it, so he can't learn it twice. Otherwise, you can check for the verb, but I don't know how to do that.

Also, I reccomend making a verb saver of some sort. I know that there is a demo upon this subject on the hub, so maybe just try searching for "verb saver".