In response to Popisfizzy
Well...It still didnt work...
Im going to dig around and see if its something else thats causing it to stop, as I said before, I have been using my old admin System for almost 2 Years now...and well, They havnt failed me before...so im going to see if anything out is messing it up
In response to Matt3151
Once again, show your current code to see if we can help.
In response to Popisfizzy
var/list/administrators = list("matt3151")

client/New()
..()
if(ckey in administrators)
verbs += typesof(/mob/Admin/verb)

Current Code :x
In response to Matt3151
Put a test in there and try again.
[edit]
Also try out just as a test
var/list/admins = list("blah")
client
New()
..()
for(var/a in admins)
if(a == src.key)
world << "YEA"
else
world << "NO"
In response to A.T.H.K
var/list/GLOBAL_ADMINS = list("Matt3151")
client/New()
..()
src<<"Passed."
if(GLOBAL_ADMINS.Find(src.key))
src<<"Got Admin."
src.verbs += typesof(/mob/Admin/verb)
else
src<<"No Admin."

Well...Something I figured out is
that when I coded it like this as a Test to see how far it got...It gave me Passed, and Got Admin, Meaning it sees the Key, however, it has a Problem giving me the Verbs
Page: 1 2