View Single Post
  #1  
Old 01-24-2007, 02:23 AM
JkWhoSaysNi JkWhoSaysNi is offline
Ruler of the graalaxy
Join Date: Feb 2005
Location: Great Britain
Posts: 488
JkWhoSaysNi is on a distinguished road
Send a message via ICQ to JkWhoSaysNi
Textshadow serverside?

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.
__________________

Coming soon (Hopefully:P)

Last edited by JkWhoSaysNi; 01-24-2007 at 02:23 AM.. Reason: fixing tags
Reply With Quote