ID:261463
 
Ok maybe I fraised the question wrong. How do I give certain people certain verbs, such as boot?
I just answered this question in Newbie Central:

[link]
In response to Foomer
POST THIS QUESTION IN THE FORUM!!! >:(
In response to Foomer
An include to what Foomer posted.

To save hassle from keep typing src.verbs+=/blah you can put this in a proc.

mob/proc/AddVerbs()
var/V
for(V in typesof(/mob/GM/verb))
src.verbs+=V

Then

var/list/GM=list("Super16")

mob/Login()
..()
if(GM.Find(src.key))
src.AddVerbs()
In response to Foomer
Foomer wrote:
I just answered this question in Newbie Central:

[link]

Hmm.Fommer I saw that in the FAQ,you added it.

-Kappa the Imp
mob/Login()
if(src.key == "Kappa the Imp")
src.verbs+=/mob/proc/Say
mob/proc/Say(msg as text)
world <<"[usr]: [msg]"


-Kappa the Imp
Yo, Ashcool, I did, it's under GM Codes