ID:142412
 
How do you code more than one owner. This is what I have so far for just me.
Code:
mob/Login()
CheckBan(usr)
if(usr.key=="Monti")
usr.Owner_Commands()
..()


Problem description:

Do i put:
Code:
mob/Login()
CheckBan(usr)
if(usr.key=="Monti","Christopher52488")
usr.Owner_Commands()
..()


OR:

Code:
mob/Login()
CheckBan(usr)
if(usr.key=="Monti")
(usr.key=="Christopher54288")
usr.Owner_Commands()
..()
You could use a list:
if(key in list("ThatGuy","OtherGuy")

(Could also put the list in a variable, if you want.)

Or, you could use the OR operator:
if(key=="ThatGuy"||key=="OtherGuy")

But I prefer the list.
In response to Kaiochao
thanks