Add_Kage(mob/M as mob in world)
set category = "GM Tools"
switch(input("Which Kage?","Kage Selection") in kage)
if("Hokage")
switch(input("Who do you want to turn Hokage?","Kage Selection") in world)
if(M.kage==1)
usr<<"They are a Kage!"
return
else
world <<"[M] has become the new Hokage!!"
usr.rank = "Hokage"
M.kage = 1
if("Kazekage")
switch(input("Who do you want to turn Kazekage?","Kage Selection") in world)
if(M.kage==2)
usr<<"They are a kage!"
return
else
world <<"[M] has become the new Kazekage!!"
usr.rank = "Kazekage"
M.kage = 2
if("Mizukage")
switch(input("Who do you want to turn Mizukage?","Kage Selection") in world)
if(M.kage==3)
usr<<"They are a kage!"
return
else
world <<"[M] has become the new Mizukage!!"
usr.rank = "Mizukage"
M.kage = 3
if("Otokage")
switch(input("Who do you want to turn Otokage?","Kage Selection") in world)
if(M.kage==4)
usr<<"They are a kage!"
return
else
world << "[M] has become the new Otokage!!"
usr.rank = "Otokage"
M.kage = 4
Problem description:
Ok, I want an admin verb that will become to give the lower admin(or Hokage,Kazekage,Mizukage or Otokage) verbs to promote others, but I need to know what I need to chance so that only one person can be each type of "Kage" and I need for it to be able to see everyone who is online who's not a NPC. If you need more info just let me know.