mob
Attacker
verb
Attack()
Then the host of the server could choose if the world will be attackers or defenders.When he choooses Attackers,then the world's mob type will have to become /mob/Attacker.I've tried:
switch(input("What will the world be?","World"))in list("Attackers","Defenders")
if("Attacker")
world.mob = /mob/Attacker
if("Defender")
world.mob = /mob/Defender
The problem is,when the host sets the mob type,the players dont get that mob type's verbs.
Your list contains words with 's' on the end, and your switch statement does not.
[Edit: Also, thanks for catching that other error, Mysame.]