Use a GANI. If you want the text to be an image, just make it like a normal GANI (with no player, single-direction, and the text floating above where the player would be) and put it in the player's attributes.
If you want to draw the text via script, use a GANI script.
Quote:
Originally Posted by cbk1994
The simplest GANI script would be something like
PHP Code:
SCRIPT function onPlayerEnters() { onCreated(); } function onCreated() { player.zoom = 2; } SCRIPTEND
You'd then do something like
PHP Code:
player.attr[8] = "mygani.gani";
GANI paramaters are passed through attributes using commas, like this:
PHP Code:
player.attr[8] = "mygani.gani,2";
|
When drawing the image, set
attachtoowner to
true.