ID:144161
 
Code:
mob
icon = 'person.dmi'
Login()
..()


mob
Login()
switch(input("Who's side will you be on?","Choose") in list ("Olaf","Badulairs"))
if("Olaf")
icon = 'olaf.dmi'
loc = location (1,1,1)
if("Badulairs")
icon = 'badulairs.dmi'
loc = location (1,25,1)


Problem description:

Well idk why its not working I made it myself... (That might be why lol) Anyways... Umm it says 8 indention errors I fix them I get 4 errors ehhh.... Can anyone help me?

EDIT: See my other post
In response to Speedro
The problem is I can fix the indentions there is nothing wrong with them... But it Doesnt work it has like 4 more erros...
Would you mind providing exactly what the compiler is stating what those errors are? Also, for some reason, I think that loc=location line should be loc=locate(x,y,z)
In response to Madman69
Alright well I guess its not gona work I will go ask some ppl in wiz_chat
Sorry, I just scanned over it. Here's your problems: when defining something in switch, the if statements that follow must be tabbed out from it. Also, it's not location, it's locate. Like this:
mob
Login()
switch(input("Who's side will you be on?","Choose") in list ("Olaf","Badulairs"))
if("Olaf")
icon = 'olaf.dmi'
loc = locate(1,1,1)
if("Badulairs")
icon = 'badulairs.dmi'
loc = locate(1,25,1)
In response to Speedro
Thank you very much I get it now =)
'Whose'
'Baudelairs'