Quote:
Originally Posted by littlekinky
Nice example thanks, also how to change the colour of it and also add a chat bubble ?
|
You'll have to write a script to draw a bubble behind the text, you will have to either:
- Use polygon in findimg, or:
- Use a bubble image, stretchx, and stretchy.
To change the color, you can change it like so:
PHP Code:
// Code
with (findimg(200)) {
text = "Rawr.";
red = 1;
green = 0;
blue = 0;
}
// Other Code
But you should do some reading on your on now.