ID:264952
 
Code:
<b>mob/proc
And()
switch(input("Andriods", "In Game") in list ("Andriod 13", "Andriod 14",))
if("Andriod 13")
src.icon = 'Characterss\andriod13.dmi'
if("Andriod 14")
src.icon = 'Characterss\android14.dmi'

</b>


Problem Resolved'

King-okal wrote:
Code:
> <b>mob/proc
> And()
> switch(input("Andriods", "In Game") in list ("Andriod 13", "Andriod 14"*****,*****))//The last comma on this line is unnecessary.
> if("Andriod 13")
> src.icon = 'Characterss\andriod13.dmi'
> if("Andriod 14")
> src.icon = 'Characterss\android14.dmi'
>
> </b>
>

Problem description:11 indentation erroes and when i get rid of those it says missing comma '_'


In regards to indentation, everything has to be evenly indented, I personally like using tabs instead of spaces.
In response to Robertbanks2
Well i fixed it myself Thanks Anyway