mob/Login()
..()
if((key in admin))verbs+=typesof(/mob/admin/verb)
src<<info
var/list/admin=list("DivineO'peanut")
Problem description: I don't recieve any admin verbs when I login.
I probably forgot somthing...
ID:262996
![]() Mar 15 2006, 3:57 am
|
|
Code:
mob/Login() Problem description: I don't recieve any admin verbs when I login. I probably forgot somthing... |
![]() Mar 15 2006, 4:02 am
|
|
mob/admin/verb/Boot(mob/M in op) This is one of my admin verbs. |
That happens to me all the time, really. You've got if(()) , try doing just if(). If that doesn't work, just use if(key=="DivineO'Peanut"), seeing as it'll save the verbs after. Meh, works for me.
|
Not workeh.
And I'd rather not use if(key==...) as this will diminish the impact of my admin system... EDIT: Code fixed, the problem was that I overide my Login() code with a few others. (Thanks Artemio) |