obj Shirt icon = 'Shirt.dmi' verb Change_Color() set src in oview(1) var/yn = input("Would you like to add some color to this shirt?")in list("Yes","No") switch(yn) if("Yes") var/icon/NewIcon = new /obj/Shirt var/R1 = input("Red?")as num var/G1 = input("Green?")as num var/B1 = input("Blue?")as num NewIcon.icon += rgb(R1,G1,B1) src.overlays += NewIcon
the problem is...the icon stays its default color(white) nothing changes....at all...Thanks for the help.
~Kros