View Single Post
  #1  
Old 08-10-2001, 05:36 AM
Poogle Poogle is offline
Registered User
Poogle's Avatar
Join Date: Jun 2001
Posts: 2,471
Poogle is on a distinguished road
Text Color Changing

What is wrong with this and help me!
if (playertouchsme) {
toweapons *Text Coloring;
}
if (isweapon) {
if (strequals( #c, setfont white )) {
if (playerchats) {
showimg index,@Tempus Sans ITC@bold(Bold)@#c,x,y;
changeimgcolors index,1,1,1,1.99;
changeimgzoom index,1;
}
}
if (strequals( #c, setfont blue )) {
if (playerchats) {
showimg index,@Tempus Sans ITC@bold(Bold)@#c,x,y;
changeimgcolors index,0,0,1,1.99;
changeimgzoom index,1;
}
}
if (strequals( #c, setfont green )) {
if (playerchats) {
showimg index,@Tempus Sans ITC@bold(Bold)@#c,x,y;
changeimgcolors index,0,1,0,1.99;
changeimgzoom index,1;
}
}
if (strequals( #c, setfont red )) {
if (playerchats) {
showimg index,@Tempus Sans ITC@bold(Bold)@#c,x,y;
changeimgcolors index,1,0,0,1.99;
changeimgzoom index,1;
}
}
}
if (weaponfired) {
if (strequals( #c, setfont white )) {
if (playerchats) {
showimg index,@Tempus Sans ITC@bold(Bold)@#c,x,y;
changeimgcolors index,1,1,1,1.99;
changeimgzoom index,1;
}
}
if (strequals( #c, setfont blue )) {
if (playerchats) {
showimg index,@Tempus Sans ITC@bold(Bold)@#c,x,y;
changeimgcolors index,0,0,1,1.99;
changeimgzoom index,1;
}
}
if (strequals( #c, setfont green )) {
if (playerchats) {
showimg index,@Tempus Sans ITC@bold(Bold)@#c,x,y;
changeimgcolors index,0,1,0,1.99;
changeimgzoom index,1;
}
}
if (strequals( #c, setfont red )) {
if (playerchats) {
showimg index,@Tempus Sans ITC@bold(Bold)@#c,x,y;
changeimgcolors index,1,0,0,1.99;
changeimgzoom index,1;
}
}
say2 To change your font#bcolor say:#bsetfont [COLOR]#bHere are the colors:#bWhite#bRed#bBlue#bGreen;
}
Reply With Quote