View Single Post
  #1  
Old 06-04-2012, 05:26 PM
brokk brokk is offline
Registered User
Join Date: May 2012
Posts: 84
brokk is on a distinguished road
Text Image color not changing?

I have a NPC that is created that joins a class. The script is suppose to draw a number but for some reason it comes out a light blue no matter what I set the color values to.

PHP Code:
function onCreated()
{
 
showText(1this.xthis.y-3$pref::graal::defaultfontname"c""" @(this.setnuber));
 
changeImgColors(110101010); //<-- I think the issue is here
   
with (findImg(1)) {
    
textshadow true;
    
shadowoffset "0 0";
    
shadowcolors "1 1 1";
    
changeImgZoom(13);
 }

Reply With Quote