Hello, I've made a simple function which creates some text in the format I'm using:
PHP Code:
function puttext(id,imx,imy,font,style,text,vis) {
showtext(id,imx,imy,font,style,text);
changeimgvis(id,vis);
changeimgzoom(id,0.5);
findimg(id).textshadow = true;
findimg(id).shadowcolor = {0,0,0};
findimg(id).shadowoffset = {2,2};
}
I'm supplying it with ids less than 200 so the text appears to all players.
The text appears fine, however the shadow only appears on the client who created the text. Everyone else can see the text but not the shadow.
Is textshadow supported serverside?
Thanks.