ID:147937
 
How Do I Make it so when the player logs in all the verbs are hidden/taken away and when they click join in my login screen they all come back?
Well, you would have to do this all manually (to my knowledge). I know that you'd have to have some statements like

mob/Login()

src.verbs -= mob/verb/MyVerb() /* You'd keep doing this untill <i>all</i> the verbs of which you wanted to go away are listed as so. Then when you want to display them again, all you have to do is. */
src.verbs += mob/verb/MyVerb()


Hope that helps, I know it can be pretty hard and stuff. But you learn from doing. ;D
In response to GoodDoggyTreat (#1)
ugh, I might as well make a var instead..... I hate tedoius work =(
In response to GoodDoggyTreat (#1)
Better idea:
mob/Login()
src.verbs -= typesof(/mob/verb)

//And later
src.verbs += typesof(/mob/verb)


There's also the client's show_verb_panel var, but that just hides the verbs.