I'd like a wings recolor tf item as I'd like to have purple fairy wings or my fairy steel when i can only get blue ones or shadow like ones
Something else id like is a fairy dragon tf item where you get fairy wings instead of dragon wings but the rest is a dragon tf with it also making you shorter as fairy dragon tend to be smaller then normal dragons
(as my goal is to be a trap fairy dragon that's white scaled with purple fairy wings/eyes/cock/nipples/lips)
That's not just your steele; Sylvan wings are hardcoded to only be blue in the game code. Dark Sylvan wings are "glittering black".
The relevant code snippet for coloring wings:
switch(iFlag)
{
case GLOBAL.FLAG_FURRED:
case GLOBAL.FLAG_FEATHERED: sColor = furColor; break;
case GLOBAL.FLAG_SCALED:
case GLOBAL.FLAG_CHITINOUS: sColor = scaleColor; break;
default:
switch(wingType)
{
case GLOBAL.TYPE_DRAGONFLY: sColor = "iridescent"; break;
case GLOBAL.TYPE_SMALLBEE:
case GLOBAL.TYPE_BEE:
case GLOBAL.TYPE_MYR: sColor = "transparent"; break;
case GLOBAL.TYPE_SYLVAN: sColor = "blue"; break;
case GLOBAL.TYPE_DARK_SYLVAN: sColor = "glittering black"; break;
}
break;
}
Effectively, the code block above means that furred and feathered wings will be the same color as your fur, while scaled and chitinous wings are the same color of your scales. However, dragonfly wings are "iridescent", and "smallbee", bee and myr wings are transparent, while sylvan wings are blue and dark sylvan wings are glittering black