no thanksdarger confirmed hobo and aids
lelEdit: If you want, I have coded a very simple script to turn all chat messages / center prints / bottom prints in Blockland into Segoe Script:
package SegoeScript
{
function NewChatHUD_addLine(%text)
{
Parent::NewChatHUD_addLine("<spush><font:Segoe Script:22>" @ %text @ "<spop>");
}
function ClientCmdCenterPrint(%text,%time)
{
Parent::ClientCmdCenterPrint("<spush><font:Segoe Script:22>" @ %text @ "<spop>",%time);
}
function ClientCmdBottomPrint(%text,%time,%bg)
{
Parent::ClientCmdBottomPrint("<spush><font:Segoe Script:22>" @ %text @ "<spop>",%time,%bg);
}
};
activatePackage(SegoeScript);
If you want to use a different size/font, feel free to modify it.
Obviously this won't apply to anything that already uses a custom font.