ID:263536
 
Code:
mob/proc/create_character()
usr.name = input("Choose a name for your character.",
"Your Name",
usr.name)
switch(alert("Select a character class.",,"Mage","Warrior","Cleric"))
if("Mage")
src==/mob/players/mage
if("Warrior")
src==/mob/players/warrior
if("Cleric")
src==/mob/players/cleric


Problem description:
Login.dm:16:== :warning: statement has no effect
Login.dm:18:== :warning: statement has no effect
Login.dm:20:== :warning: statement has no effect


You should really look up "==" and "="in the DM refrence...
It would also help if you read the DM Guide.

-KirbyAllStar