Code:
Problem description:
I have been trying to fix this one error but i cant seem to find the problem so im hoping someone on byond can help! heres the code:
mob/create_character
var/mob/character
Login()
var/charactername = input("What would you like to be called?","Name",src.key)
switch(input("Which Character will you choose?","Anime","Naruto (Deidara)") in list("Naruto (Deidara)","Bleach (Grimmjow)","Naruto (Minato)")
if("Naruto (Deidara)")
character = new /mob/deidara()
if("Bleach (Grimmjow)")
character = new /mob/grimmjow()
if("Naruto (Minato)")
character = new /mob/minato()
i have everything correctly indented i believe
and the error that shows up is:loading Official.dme
Characters.dm:61:error: if: missing comma ',' or right-paren ')'
Official.dmb - 3 errors, 0 warnings (double-click on an error to jump to it)
which is the line that says 'if("Naruto (Deidara)"). someone plz help me fix this!
Copyright © 2023 BYOND Software.
All rights reserved.
You're missing the last ).
I swear someone JUST posted about this in a topic, but I can't find it.