View Single Post
  #3  
Old 05-15-2002, 02:51 AM
amonrabr amonrabr is offline
Scripter
Join Date: Nov 2001
Location: Brazil
Posts: 374
amonrabr is on a distinguished road
Re: Colored Text -I 4Get!

Quote:
Originally posted by Spark910
For:
if playerenters) {
x=30;
y=20;
message Shop;
}

To Be In RED How Do I Do It! Also A Blue One Would Help! Is it By Using 0+1's or 0-255?

And whats script to chnage it cos i 4got!
if u reaaaally wanna do this, try:

NPC Code:
if(created){
this.colors={1,1,1} //Change the colors 0-255
showimg id,@Arial@name,x-1,y-1;
showimg id+1,@Arial@name,x-.9,y-.9;
changeimgcolors id+1,0,0,1,.9;
changeimgvis id,3;
changeimgcolors id,this.colors[0],this.colors[1],this.colors[2],.9;
}

Reply With Quote