mob/player
Login()
world << "<b> \red [usr] logs on!"
alert("Welcome to the demo. This is a test to see if the game works fairly well. Any suggestions to improve it are welcome. Any reports of bugs or glitches are requested. Thanks for your time.","Welcome","Ok")
src.name = input("What is your name?","Name",src.key)
switch(input("What would you like to be? (Sorry, but there's only one choice avalible at the moment)")in list("Drider"))
if("Drider")
usr.icon = 'DriderMale.dmi'
usr.Species = "Drider"
switch(input("What gender?")in list("Male","Female")
if("Male")
usr.Gender = "Male"
switch(input("What color of fur would you like?")in list("Red","Blue","Green","Black","Yellow","Gray","Purple","Pink","Brown","Orange","White","Magneta")
if("Red")
Problem description:
No matter what I do, the following code pops up for lines 11 and 14 even though the parenthesis exists.
Login.dm:11:error: if: missing comma ',' or right-paren ')'
[Edit]
I missed one. That's what I get for being too lazy to scroll over.