Hello all.

In one of my gumps I would like to use the runic font face for some text. From reading this post it looks like it should be possible.

However, I'm not having any luck with this and was wondering if anyone knew the correct syntax / name to make use of the runic font.

Currently my code looks like:

AddHtml(xOffset, 200, 100, 100, "<BASEFONT FACE=UO_Runic_20pt>TEST TEXT</BASEFONT>", false, false);
I have tried various variants in FACE, from the name which is visible in the previously linked post to a number I've gathered from UOFiddler.

Thank you.
hostile.node
 
You can change the font-face using the not-so-intuitive size attribute;
Code:
 "<BASEFONT SIZE=\"4\">TEST TEXT</BASEFONT>"
I don't recall which size value is for the runes.
 
Back