ID:142403
 
Code:
mob
Login()
src.name = input("What do you want your character's name to be?") as text
src.Hair = 'Hair.dmi'
var/Num1 = input("How much red do you want in your hair?","Hair Color") as num
var/Num2 = input("How much green do you want in your hair?","Hair Color") as num
var/Num3 = input("How much blue do you want in your hair?","Hair Color") as num
src.overlays += src.Hair
src.Hair += rgb(Num1,Num2,Num3)
..()
src.TailCheck()
src.Tail += rgb(Num1,Num2,Num3)


Problem description: The problem is, that even when the hair color is inputted, nothing results. I have no idea what the problem is.

You're adding the icon to overlays before you make changes. Hence, you're not seeing the changes.

Lummox JR