With both showtext and the showimg older way of showing text on screen transparency seems to be unsupported...
the script i used was this:
NPC Code:
// NPC made by Citizen Houdini Fontaine (Zormite)
if (created||playerenters) {
showtext 0,x,y,Arial,,Test Text;
changeimgzoom 0,5;
}
if (playerchats && strequals(#c,fade)) {
changeimgcolors 0,0,0,1,0.5;
}
It turns blue if you try it when you say "fade" to show that the command is executed but the alpha doesn't affect the text...
Is there a way to make text fade to transparent?
(I will use a for () loop to make it fade at a given incriment but i can't affect the alpha of the text at all right now other than fading to black on a black background... I need it to be transparent.)