this works good for me...

Code:
#include <acknex.h>
#include <windows.h>

FONT* my_font;

TEXT* test_txt = 
{
	flags = SHOW;
	string = "Comic letter";
}

void main()
{
	AddFontResource("Aarvark_Cafe.ttf");

	my_font = font_create("Aarvark Cafe#100");

	test_txt.font = my_font;
	
	while ( !key_any ) wait(1);
	
	sys_exit ( NULL );
}



Salud!