//Here is an example of my admin verbs.
mob
Owner/verb
Instant_Kill(mob/players/M in world)
//code in here
Revive(mob/players/M in world)
//code in here
GM/verb
Teleport(mob/players/M in world)
//code in here
Summon
//code in here
mob/Login()
if(src.key == "Dice1989")
src.verbs += typesof(/mob/Owner/verb/)
src.verbs += typesof(/mob/GM/verb/)
src.loc = locate(1,1,1)
if(src.key == "John Doe")
src.verbs += typesof(/mob/GM/verb/)
src.loc = locate(1,1,1)
else
src.loc = locate(1,1,1)
..()
//Theres probably an error in that code somewhere but you get what I mean.
So how would I give John Doe the Instant_Kill verb without changing his rank?
Thanks, Dice1989.