Thanks for your quick reply. The samples also don't work. I have also tried for several texts. My suspicion is that there is something wrong with font_create.

Doing this also does not work (font1_red.pcx is in the game folder):

Code:
function create_text()
{
  ...
  my_text.font = font_create("font1_red.pcx");
}



but the following does work:

Code:
function create_text()
{
  ...
  my_text.font = LucidaConsole14;
}



Last edited by Reconnoiter; 08/11/15 13:59.