ID:169752
May 5 2005, 10:25 am (Edited on May 5 2005, 10:32 am)
|
|
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.
|
Copyright © 2024 BYOND Software.
All rights reserved.
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".