obj
Clothes
verb
Change_Color()
set category = null
set src in usr
if(src.loc == usr)
var/pick = input("What color do you want to change your [src] to?","[src] Color") as color|null
if(pick == null)
return
else
src.icon += pick
I know this will work for the base icon without added colors but im not sure how i would change the color from an existing icon with added color.
Are you looking to change the object's color?