Inconsistent Indentation Problem in Developer Help
|
|
Code:
mob
Logout() if(usr.start==1) return else usr.Save() world << "<font color=#808000 size=1><u><b>Naruto: Fallen Shinobi Information:</u><font color=lime size=1>[html_encode(src)] has logged out" del src Login() usr.loc = locate(7,7,1) usr.start = 1 client.show_verb_panel = 0 usr.npc = 0 usr.noit = 0 usr.Load() usr.CreatChar()
mob proc CreatChar() var/list/clans = list("Uchiha", "Kaguya","Hyuuga","Akimichi","Aburame","Inuzuka","Nara","Haku","Taijutsu Specialist","Sand Manipulator","Medical-Nin") src.name = input("What do you want to be called?",src.key,src.name) src.Clan = input("Select a clan.","Clan", src.Clan) in clans switch(Clan) if("Uchiha") if(src.clany) return src.clany = 1 switch(input("Are you sure you would like to be Uchiha?", "Uchiha") in list ("Yes","No")) if("Yes") usr<<"You have chosen the Uchiha clan!" usr.Uchiha=1 usr.Realplayer = 1 usr.human = 1 usr.Clan = "Uchiha" usr.Inuzuka=0 usr.chosen = 1 usr.Gaaraclan=0 usr.Kaguya=0 usr.Hyuuga=0 usr.Nara=0 usr.NonClan=0 usr.Aburame=0 usr.Akimichi = 0 usr.view = 6 usr.loc = locate(94,7,20) if("No") return
|
Problem description: I'm still new to the world of BYOND Development, and I can't seem to solve this problem. I get 21 errors of Inconsistent Indentation and everything I do doesn't help. Any help at all is gladly accepted, thank you.
|