mob/verb/Join_Game()
set hidden = 1 //is always hidden, i want it to go hidden or delete it self one of the two
switch(input("Which team do you want to join?","Team")in list("Red","Blue"))
if("Red")
usr.color = "red"
if("Blue")
usr.color = "blue"
Problem description:
i want the verb to become hidden when you use the verb, not always be hidden...can i do that?
src.verbs-=/mob/verb/Join_Game